World list packet fixes, and worked on reserve packet.

This commit is contained in:
Filip Maj 2015-09-03 23:07:56 -04:00
parent e7e267bd44
commit 6c869353cc
3 changed files with 6 additions and 5 deletions

View file

@ -165,7 +165,7 @@ namespace FFXIVClassic_Lobby_Server.packets
{
byte[] subpacketData = subpacket.getBytes();
Array.Copy(subpacketData, 0, data, offset, subpacketData.Length);
header.packetSize += (ushort)subpacketData.Length;
offset += (ushort)subpacketData.Length;
}
Debug.Assert(data != null && offset == data.Length && header.packetSize == 0x10 + offset);