summaryrefslogtreecommitdiff
path: root/src/net/eathena/inventoryhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-09 17:01:33 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-09 17:01:33 +0300
commite88234e3d4d52ab4930d907562f68775fa558d07 (patch)
tree9df19628dce0395fa8e38de0e587a7bb31231749 /src/net/eathena/inventoryhandler.cpp
parent84b673bf3871970e43f8358728b5c4aedfc3f1e4 (diff)
downloadplus-e88234e3d4d52ab4930d907562f68775fa558d07.tar.gz
plus-e88234e3d4d52ab4930d907562f68775fa558d07.tar.bz2
plus-e88234e3d4d52ab4930d907562f68775fa558d07.tar.xz
plus-e88234e3d4d52ab4930d907562f68775fa558d07.zip
eathena: add packet CMSG_MOVE_FROM_CART 0x0127.
Diffstat (limited to 'src/net/eathena/inventoryhandler.cpp')
-rw-r--r--src/net/eathena/inventoryhandler.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp
index 7fa96f64e..74fcb920b 100644
--- a/src/net/eathena/inventoryhandler.cpp
+++ b/src/net/eathena/inventoryhandler.cpp
@@ -223,6 +223,12 @@ void InventoryHandler::moveItem2(const int source, const int slot,
outMsg.writeInt16(static_cast<int16_t>(slot + INVENTORY_OFFSET));
outMsg.writeInt32(amount);
}
+ else if (source == Inventory::CART && destination == Inventory::INVENTORY)
+ {
+ MessageOut outMsg(CMSG_MOVE_FROM_CART);
+ outMsg.writeInt16(static_cast<int16_t>(slot + INVENTORY_OFFSET));
+ outMsg.writeInt32(amount);
+ }
}
void InventoryHandler::processPlayerEquipment(Net::MessageIn &msg)