diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-03 23:16:04 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-06 01:18:56 +0300 |
commit | a37b34f16d81c0b60376c63a11974c401faa2f91 (patch) | |
tree | f36c6396b9d4696b3c3c9b636cb0e856f19c93d1 /src/net/eathena/inventoryhandler.cpp | |
parent | 9049b5a8d88f864a99df228df0152adabef4d909 (diff) | |
download | plus-a37b34f16d81c0b60376c63a11974c401faa2f91.tar.gz plus-a37b34f16d81c0b60376c63a11974c401faa2f91.tar.bz2 plus-a37b34f16d81c0b60376c63a11974c401faa2f91.tar.xz plus-a37b34f16d81c0b60376c63a11974c401faa2f91.zip |
eathena: fix packet SMSG_PLAYER_EQUIP 0x0999.
Diffstat (limited to 'src/net/eathena/inventoryhandler.cpp')
-rw-r--r-- | src/net/eathena/inventoryhandler.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp index 3861945df..d0458a61b 100644 --- a/src/net/eathena/inventoryhandler.cpp +++ b/src/net/eathena/inventoryhandler.cpp @@ -399,9 +399,10 @@ void InventoryHandler::processPlayerInventory(Net::MessageIn &msg) void InventoryHandler::processPlayerEquip(Net::MessageIn &msg) { BLOCK_START("InventoryHandler::processPlayerEquip") - const int index = msg.readInt16() - INVENTORY_OFFSET; - const int equipType = msg.readInt16(); - const uint8_t flag = msg.readUInt8(); + const int index = msg.readInt16("index") - INVENTORY_OFFSET; + const int equipType = msg.readInt32("wear location"); + msg.readInt16("sprite"); + const uint8_t flag = msg.readUInt8("result"); if (!flag) NotifyManager::notify(NotifyTypes::EQUIP_FAILED); |