summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-11-03 02:23:25 +0300
committerAndrei Karas <akaras@inbox.ru>2018-11-03 02:23:25 +0300
commitc3a3ee96b1a5b8a94334b3a900b5cc29ba6571cc (patch)
tree71a598999d2081a565eb55c0120469724200fa6b
parentacc5e06a62dd6a368b06829e0ad2a2d2607af341 (diff)
downloadplus-c3a3ee96b1a5b8a94334b3a900b5cc29ba6571cc.tar.gz
plus-c3a3ee96b1a5b8a94334b3a900b5cc29ba6571cc.tar.bz2
plus-c3a3ee96b1a5b8a94334b3a900b5cc29ba6571cc.tar.xz
plus-c3a3ee96b1a5b8a94334b3a900b5cc29ba6571cc.zip
Add new inventory packets for main packet types (20181002)
-rw-r--r--src/net/eathena/packetsin.inc9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc
index 65c65b593..12ca2e38d 100644
--- a/src/net/eathena/packetsin.inc
+++ b/src/net/eathena/packetsin.inc
@@ -1364,6 +1364,15 @@ if (packetVersion >= 20181002)
packet(SMSG_BEING_REMOVE_SPECIAL_EFFECT, 0x0b0d, 10, &BeingRecv::processBeingRemoveSpecialEffect, 20181002);
}
+// 20181002 main
+if (packetVersionMain >= 20181002)
+{
+ packet(SMSG_INVENTORY_START3, 0x0b08, -1, &InventoryRecv::processInventoryStart3, 20181002);
+ packet(SMSG_INVENTORY_END2, 0x0b0b, 4, &InventoryRecv::processInventoryEnd2, 20181002);
+ packet(SMSG_PLAYER_COMBINED_INVENTORY2, 0x0b09, -1, &InventoryRecv::processPlayerCombinedInventory2, 20181002);
+ packet(SMSG_PLAYER_COMBINED_EQUIPMENT2, 0x0b0a, -1, &InventoryRecv::processPlayerCombinedEquipment2, 20181002);
+}
+
// 20181010 zero
if (packetVersionZero >= 20181010)
{