summaryrefslogtreecommitdiff
path: root/src/net/eathena/inventoryhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-03 22:57:56 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-06 01:18:56 +0300
commit0af6ac61cb8fbe5b1b0a593a705a14c8a01e2fa3 (patch)
tree53f1ef394fea07e4d5c3cbac2b3fc8e0d682731b /src/net/eathena/inventoryhandler.cpp
parenteb904c5fb6219ca2caaa80805e9aef9b8cb59587 (diff)
downloadplus-0af6ac61cb8fbe5b1b0a593a705a14c8a01e2fa3.tar.gz
plus-0af6ac61cb8fbe5b1b0a593a705a14c8a01e2fa3.tar.bz2
plus-0af6ac61cb8fbe5b1b0a593a705a14c8a01e2fa3.tar.xz
plus-0af6ac61cb8fbe5b1b0a593a705a14c8a01e2fa3.zip
eathena: fix packet CMSG_PLAYER_EQUIP 0x0998.
Diffstat (limited to 'src/net/eathena/inventoryhandler.cpp')
-rw-r--r--src/net/eathena/inventoryhandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp
index 1d32cda58..3eb10d28b 100644
--- a/src/net/eathena/inventoryhandler.cpp
+++ b/src/net/eathena/inventoryhandler.cpp
@@ -149,8 +149,8 @@ void InventoryHandler::equipItem(const Item *const item) const
MessageOut outMsg(CMSG_PLAYER_EQUIP);
outMsg.writeInt16(static_cast<int16_t>(
- item->getInvIndex() + INVENTORY_OFFSET));
- outMsg.writeInt16(0);
+ item->getInvIndex() + INVENTORY_OFFSET), "index");
+ outMsg.writeInt32(0, "wear location");
}
void InventoryHandler::unequipItem(const Item *const item) const