summaryrefslogtreecommitdiff
path: root/src/net/eathena/inventoryrecv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena/inventoryrecv.cpp')
-rw-r--r--src/net/eathena/inventoryrecv.cpp8
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