mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 05:24:34 +02:00
Got linkshell creation working.
This commit is contained in:
parent
c3c19c3592
commit
1d3dd99414
10 changed files with 149 additions and 13 deletions
|
@ -88,6 +88,11 @@ namespace FFXIVClassic_Map_Server
|
|||
PartySyncPacket partySyncPacket = new PartySyncPacket(subpacket.data);
|
||||
Server.GetWorldManager().PartyMemberListRecieved(partySyncPacket);
|
||||
break;
|
||||
//World Server - Linkshell Creation Result
|
||||
case 0x1025:
|
||||
LinkshellResultPacket lsResult = new LinkshellResultPacket(subpacket.data);
|
||||
LuaEngine.GetInstance().OnSignal("ls_result", lsResult.resultCode);
|
||||
break;
|
||||
//Ping
|
||||
case 0x0001:
|
||||
//subpacket.DebugPrintSubPacket();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue