diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-11-03 02:23:25 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-11-03 02:23:25 +0300 |
commit | c3a3ee96b1a5b8a94334b3a900b5cc29ba6571cc (patch) | |
tree | 71a598999d2081a565eb55c0120469724200fa6b /src | |
parent | acc5e06a62dd6a368b06829e0ad2a2d2607af341 (diff) | |
download | plus-c3a3ee96b1a5b8a94334b3a900b5cc29ba6571cc.tar.gz plus-c3a3ee96b1a5b8a94334b3a900b5cc29ba6571cc.tar.bz2 plus-c3a3ee96b1a5b8a94334b3a900b5cc29ba6571cc.tar.xz plus-c3a3ee96b1a5b8a94334b3a900b5cc29ba6571cc.zip |
Add new inventory packets for main packet types (20181002)
Diffstat (limited to 'src')
-rw-r--r-- | src/net/eathena/packetsin.inc | 9 |
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) { |