diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-01-24 20:13:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-01-25 02:39:13 +0300 |
commit | d2fb1e8fe58821c598b88906b919a36fb29a72e9 (patch) | |
tree | d125c41a7a95b42f0fdc3819ae868818eb5a3e07 /src/net/eathena/inventoryrecv.cpp | |
parent | f08d73feaf8ff09b9a7eb3caceeea8e8b1f93ee6 (diff) | |
download | manaverse-d2fb1e8fe58821c598b88906b919a36fb29a72e9.tar.gz manaverse-d2fb1e8fe58821c598b88906b919a36fb29a72e9.tar.bz2 manaverse-d2fb1e8fe58821c598b88906b919a36fb29a72e9.tar.xz manaverse-d2fb1e8fe58821c598b88906b919a36fb29a72e9.zip |
Add packet SMSG_INVENTORY_EXPANSION_ACK 0x0b15
Diffstat (limited to 'src/net/eathena/inventoryrecv.cpp')
-rw-r--r-- | src/net/eathena/inventoryrecv.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/net/eathena/inventoryrecv.cpp b/src/net/eathena/inventoryrecv.cpp index 388a8fe10..9a0b85c3c 100644 --- a/src/net/eathena/inventoryrecv.cpp +++ b/src/net/eathena/inventoryrecv.cpp @@ -1674,7 +1674,6 @@ void InventoryRecv::processShowItemPreview2(Net::MessageIn &msg) void InventoryRecv::processInventoryExpansionInfo(Net::MessageIn &msg) { - UNIMPLEMENTEDPACKET; const int newSize = msg.readInt16("expansion size") + settings.fixedInventorySize; Inventory *const inv = PlayerInfo::getInventory(); @@ -1684,4 +1683,11 @@ void InventoryRecv::processInventoryExpansionInfo(Net::MessageIn &msg) } } +void InventoryRecv::processInventoryExpansionAck(Net::MessageIn &msg) +{ + UNIMPLEMENTEDPACKET; + msg.readUInt8("result"); + msg.readItemId("item id"); +} + } // namespace EAthena |