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.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/net/eathena/inventoryrecv.cpp b/src/net/eathena/inventoryrecv.cpp
index ddf4a5925..388a8fe10 100644
--- a/src/net/eathena/inventoryrecv.cpp
+++ b/src/net/eathena/inventoryrecv.cpp
@@ -1672,4 +1672,16 @@ 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();
+ if (inv != nullptr)
+ {
+ inv->resize(newSize);
+ }
+}
+
} // namespace EAthena