This commit is contained in:
Filip Maj 2019-06-17 23:29:34 -04:00
commit 29ec6a9a88
5 changed files with 47 additions and 10 deletions

View file

@ -61,6 +61,9 @@ namespace FFXIVClassic_Lobby_Server
public void QueuePacket(BasePacket packet)
{
if (SendPacketQueue.Count == SendPacketQueue.BoundedCapacity - 1)
FlushQueuedSendPackets();
SendPacketQueue.Add(packet);
}