mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
Added command and script packets. Finished the SetActorProperty packet. Fixed bug with manually send packets from console.
This commit is contained in:
@@ -38,7 +38,8 @@ namespace FFXIVClassic_Lobby_Server
|
||||
|
||||
while (sendPacketQueue.Count > 0)
|
||||
{
|
||||
BasePacket packet = sendPacketQueue.Take();
|
||||
BasePacket packet = sendPacketQueue.Take();
|
||||
|
||||
byte[] packetBytes = packet.getPacketBytes();
|
||||
byte[] buffer = new byte[0xffff];
|
||||
Array.Copy(packetBytes, buffer, packetBytes.Length);
|
||||
|
||||
Reference in New Issue
Block a user