Core/Guilds: Fix bank money log after 58ec4e53 (due to bad opcode structure).

Closes #8432
This commit is contained in:
joschiwald
2012-11-26 08:48:51 +01:00
committed by Spp
parent 941be9cdc4
commit 2a4ba49664

View File

@@ -249,7 +249,7 @@ void Guild::BankEventLogEntry::WritePacket(WorldPacket& data) const
data << uint8(m_destTabId);
break;
default:
data << uint64(m_itemOrMoney);
data << uint32(m_itemOrMoney);
}
data << uint32(time(NULL) - m_timestamp);