mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Fixed NLog config for map server. Added some debug printouts while testing.
This commit is contained in:
@@ -35,7 +35,9 @@ namespace FFXIVClassic_World_Server
|
||||
|
||||
while (SendPacketQueue.Count > 0)
|
||||
{
|
||||
BasePacket packet = SendPacketQueue.Take();
|
||||
BasePacket packet = SendPacketQueue.Take();
|
||||
|
||||
packet.DebugPrintPacket();
|
||||
|
||||
byte[] packetBytes = packet.GetPacketBytes();
|
||||
|
||||
|
@@ -136,6 +136,7 @@ namespace FFXIVClassic_World_Server
|
||||
|
||||
public void OnReceiveSubPacketFromZone(ZoneServer zoneServer, SubPacket subpacket)
|
||||
{
|
||||
subpacket.DebugPrintSubPacket();
|
||||
uint sessionId = subpacket.header.targetId;
|
||||
|
||||
if (mZoneSessionList.ContainsKey(sessionId))
|
||||
|
Reference in New Issue
Block a user