mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-09 14:04:41 +02:00
Merge branch 'develop' of https://bitbucket.org/Ioncannon/ffxiv-classic-server into develop
This commit is contained in:
commit
29ec6a9a88
5 changed files with 47 additions and 10 deletions
|
@ -41,11 +41,17 @@ namespace FFXIVClassic_World_Server
|
|||
|
||||
public void QueuePacket(BasePacket packet)
|
||||
{
|
||||
if (SendPacketQueue.Count == SendPacketQueue.BoundedCapacity - 1)
|
||||
FlushQueuedSendPackets();
|
||||
|
||||
SendPacketQueue.Add(packet);
|
||||
}
|
||||
|
||||
public void QueuePacket(SubPacket subpacket)
|
||||
{
|
||||
if (SendPacketQueue.Count == SendPacketQueue.BoundedCapacity - 1)
|
||||
FlushQueuedSendPackets();
|
||||
|
||||
bool isAuthed = true;
|
||||
bool isEncrypted = false;
|
||||
subpacket.SetTargetId(owner.sessionId);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue