mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Added party sync packet which will sync member info between world/zone servers.
This commit is contained in:
@@ -78,7 +78,12 @@ namespace FFXIVClassic_Map_Server
|
||||
|
||||
client.QueuePacket(SessionEndConfirmPacket.BuildPacket(session, endSessionPacket.destinationZoneId), true, false);
|
||||
client.FlushQueuedSendPackets();
|
||||
break;
|
||||
break;
|
||||
//World Server - Party Synch
|
||||
case 0x1020:
|
||||
PartySyncPacket partySyncPacket = new PartySyncPacket(subpacket.data);
|
||||
Server.GetWorldManager().PartyMemberListRecieved(partySyncPacket);
|
||||
break;
|
||||
//Ping
|
||||
case 0x0001:
|
||||
//subpacket.DebugPrintSubPacket();
|
||||
|
Reference in New Issue
Block a user