diff options
| author | Brian <runningnak3d@gmail.com> | 2010-02-14 19:13:14 -0700 |
|---|---|---|
| committer | Brian <runningnak3d@gmail.com> | 2010-02-14 19:13:14 -0700 |
| commit | 486c00891ba34884e5b2cdd8d44b4d8496f11283 (patch) | |
| tree | 7df304b9020ed21b87bd66978d2dc6e6683edce7 /src/game/ItemHandler.cpp | |
| parent | 7799ade4da0da17034039439d692122e976c0138 (diff) | |
* Core switch to client 3.3.2 (11403)
* Credits (in no particular order) to:
* n0n4m3, raczman, manuel, Spp, Malcrom, Teacher, QAston, Tartalo,
* thenecromancer, Xanadu, Trazom, Zor, kiper
* Additional credits to:
* TOM_RUS and NoFantasy from MaNGOS
* Thanks for testing Aokromes and XTElite1
* SoTA still needs some work, but is very playable (huge thanks to raczman and
* kiper)
* To upgrade, you need to apply all SQL from sql/updates/3.2.2a_old from the
* last rev you are on
* and then apply all SQL from sql/updates/3.3.2_old to char / realmd / world
* DBs
* Known problem with guild banks.
--HG--
branch : trunk
Diffstat (limited to 'src/game/ItemHandler.cpp')
| -rw-r--r-- | src/game/ItemHandler.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/ItemHandler.cpp b/src/game/ItemHandler.cpp index 4993f8bcd12..b36fd844923 100644 --- a/src/game/ItemHandler.cpp +++ b/src/game/ItemHandler.cpp @@ -1341,7 +1341,7 @@ void WorldSession::HandleCancelTempEnchantmentOpcode(WorldPacket& recv_data) void WorldSession::HandleItemRefundInfoRequest(WorldPacket& recv_data) { - sLog.outDebug("WORLD: CMSG_ITEM_REFUND_INFO_REQUEST"); + sLog.outDebug("WORLD: CMSG_ITEM_REFUND_INFO"); uint64 guid; @@ -1362,7 +1362,7 @@ void WorldSession::HandleItemRefundInfoRequest(WorldPacket& recv_data) } // item refund system not implemented yet - WorldPacket data(SMSG_ITEM_REFUND_TIMER, 8+4+4+4+4*4+4*4+4+4); // guess size + WorldPacket data(SMSG_ITEM_REFUND_INFO_RESPONSE, 8+4+4+4+4*4+4*4+4+4); // guess size data << uint64(guid); // item guid data << uint32(1); // unknown data << uint32(item->GetPaidHonorPoints()); // honor point cost @@ -1398,13 +1398,13 @@ void WorldSession::HandleItemRefund(WorldPacket &recv_data) if(item->GetRefundExpiryTime() <= time(NULL)) // item refund has expired { - WorldPacket data(SMSG_ITEM_REFUND); + WorldPacket data(SMSG_ITEM_REFUND_RESULT); data << uint64(guid); // guid data << uint32(1); // error, abort refund return; } - WorldPacket data(SMSG_ITEM_REFUND); + WorldPacket data(SMSG_ITEM_REFUND_RESULT); data << uint64(guid); // guid? data << uint32(0); // must be 0 or client side error in refund data << uint32(0); // unk - message sent to client? |
