diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-04-06 00:04:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-04-06 00:04:10 +0300 |
commit | 8d19c3ed8e0c03f162e022dd0f09fff53f2bc055 (patch) | |
tree | 94af8b27eb20355e0714f4789359fb75fcc4380f /src/net/eathena/inventoryhandler.cpp | |
parent | 4598f298e22f5e7bd0da0f59743ec32ab6dd8add (diff) | |
download | plus-8d19c3ed8e0c03f162e022dd0f09fff53f2bc055.tar.gz plus-8d19c3ed8e0c03f162e022dd0f09fff53f2bc055.tar.bz2 plus-8d19c3ed8e0c03f162e022dd0f09fff53f2bc055.tar.xz plus-8d19c3ed8e0c03f162e022dd0f09fff53f2bc055.zip |
Impliment packet CMSG_MERGE_ITEM_ACK 0x096e.
Diffstat (limited to 'src/net/eathena/inventoryhandler.cpp')
-rw-r--r-- | src/net/eathena/inventoryhandler.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryhandler.cpp b/src/net/eathena/inventoryhandler.cpp index 49a0b39fb..4ad6e409e 100644 --- a/src/net/eathena/inventoryhandler.cpp +++ b/src/net/eathena/inventoryhandler.cpp @@ -231,4 +231,17 @@ void InventoryHandler::identifyItem(const Item *const item) const "item index"); } +void InventoryHandler::mergeItemsAck(const std::vector<Item*> &items) const +{ + createOutPacket(CMSG_MERGE_ITEM_ACK); + const size_t sz = items.size(); + outMsg.writeInt16(CAST_S16(sz * 2 + 4), + "len"); + FOR_EACH (std::vector<Item*>::const_iterator, it, items) + { + outMsg.writeInt16((*it)->getInvIndex() + 2, + "item index"); + } +} + } // namespace EAthena |