1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-20 19:57:46 +00:00

Map Server Packet fix.

This commit is contained in:
Filip Maj 2018-04-07 13:50:43 -04:00
parent 611140568e
commit aba748cb5d

View file

@ -19,6 +19,9 @@ namespace FFXIVClassic_Map_Server.dataobjects
public void QueuePacket(SubPacket subpacket)
{
if (SendPacketQueue.Count == SendPacketQueue.BoundedCapacity - 1)
FlushQueuedSendPackets();
SendPacketQueue.Add(subpacket);
}