mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
ReAdding Azia's fixes that got removed when I fucked up on the license change.
This commit is contained in:
@@ -42,11 +42,17 @@ namespace Meteor.World
|
||||
|
||||
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);
|
||||
|
Reference in New Issue
Block a user