Core/Chat: Send addon prefix in addon messages

Correct structure of some CMSG_MESSAGECHAT_ADDON_x opcodes
Fix a compile error in HandleReforgeItemOpcode
This commit is contained in:
Nay
2012-08-04 15:58:09 +01:00
parent 17e852d9b3
commit 5518daa74b
8 changed files with 87 additions and 44 deletions

View File

@@ -1697,7 +1697,7 @@ void WorldSession::HandleReforgeItemOpcode(WorldPacket& recvData)
return;
}
if (player->HasEnoughMoney(item->GetSpecialPrice())) // cheating
if (player->HasEnoughMoney(uint64(item->GetSpecialPrice()))) // cheating
{
SendReforgeResult(false);
return;