Core/PacketIO: Fixed structure of CMSG_VOID_STORAGE_TRANSFER

This commit is contained in:
Shauren
2013-06-02 17:44:58 +02:00
parent 1866c7a038
commit 1fa268b672

View File

@@ -246,8 +246,6 @@ void WorldSession::HandleVoidStorageTransfer(WorldPacket& recvData)
npcGuid[7] = recvData.ReadBit();
recvData.FlushBits();
for (uint32 i = 0; i < countDeposit; ++i)
{
recvData.ReadByteSeq(itemGuids[i][6]);
@@ -266,8 +264,8 @@ void WorldSession::HandleVoidStorageTransfer(WorldPacket& recvData)
for (uint32 i = 0; i < countWithdraw; ++i)
{
recvData.ReadByteSeq(itemIds[i][3]);
recvData.ReadByteSeq(itemIds[i][1]);
recvData.ReadByteSeq(itemIds[i][0]);
recvData.ReadByteSeq(itemIds[i][1]);
recvData.ReadByteSeq(itemIds[i][6]);
recvData.ReadByteSeq(itemIds[i][2]);
recvData.ReadByteSeq(itemIds[i][7]);