Core/Items: fixed item destroy (needs porting..)

This commit is contained in:
Rat
2014-12-20 17:37:13 +01:00
parent ec513ecfc2
commit b3a5f466d5
+1 -1
View File
@@ -283,7 +283,7 @@ void WorldSession::HandleDestroyItemOpcode(WorldPacket& recvData)
uint8 bag, slot;
uint32 count;
recvData >> count >> slot >> bag;
recvData >> count >> bag >> slot;
TC_LOG_DEBUG("network", "STORAGE: receive bag = %u, slot = %u, count = %u", bag, slot, count);
uint16 pos = (bag << 8) | slot;