diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-09 16:57:12 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-09 16:59:43 +0300 |
commit | 84b673bf3871970e43f8358728b5c4aedfc3f1e4 (patch) | |
tree | 7a9acc90878a1bcdd9424e6f91d0ed1e3bcd33d2 /src/net/eathena/inventoryhandler.cpp | |
parent | 0ff1cce3a289c2a813ed5db13250abbb23d2a9f0 (diff) | |
download | plus-84b673bf3871970e43f8358728b5c4aedfc3f1e4.tar.gz plus-84b673bf3871970e43f8358728b5c4aedfc3f1e4.tar.bz2 plus-84b673bf3871970e43f8358728b5c4aedfc3f1e4.tar.xz plus-84b673bf3871970e43f8358728b5c4aedfc3f1e4.zip |
eathena: add packet CMSG_MOVE_TO_CART 0x0126.
Diffstat (limited to 'src/net/eathena/inventoryhandler.cpp')
-rw-r--r-- | src/net/eathena/inventoryhandler.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp index dba668745..7fa96f64e 100644 --- a/src/net/eathena/inventoryhandler.cpp +++ b/src/net/eathena/inventoryhandler.cpp @@ -217,6 +217,12 @@ void InventoryHandler::moveItem2(const int source, const int slot, outMsg.writeInt16(static_cast<int16_t>(slot + STORAGE_OFFSET)); outMsg.writeInt32(amount); } + else if (source == Inventory::INVENTORY && destination == Inventory::CART) + { + MessageOut outMsg(CMSG_MOVE_TO_CART); + outMsg.writeInt16(static_cast<int16_t>(slot + INVENTORY_OFFSET)); + outMsg.writeInt32(amount); + } } void InventoryHandler::processPlayerEquipment(Net::MessageIn &msg) |