diff options
author | Andrei Karas <akaras@inbox.ru> | 2019-01-25 02:23:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-01-25 02:39:13 +0300 |
commit | e7884fd8de40923ebadb0e9d810c597215821d65 (patch) | |
tree | d5dc79030ec9f47d49fdeb5be15f7010c1e81041 /src/net/eathena/packetsout.inc | |
parent | 08c14216d4b628ea7ecfbc2e7448632ec514f3db (diff) | |
download | plus-e7884fd8de40923ebadb0e9d810c597215821d65.tar.gz plus-e7884fd8de40923ebadb0e9d810c597215821d65.tar.bz2 plus-e7884fd8de40923ebadb0e9d810c597215821d65.tar.xz plus-e7884fd8de40923ebadb0e9d810c597215821d65.zip |
Add packet CMSG_INVENTORY_EXPAND 0x0b14
Diffstat (limited to 'src/net/eathena/packetsout.inc')
-rw-r--r-- | src/net/eathena/packetsout.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/net/eathena/packetsout.inc b/src/net/eathena/packetsout.inc index b1a41e4d2..7ba401f84 100644 --- a/src/net/eathena/packetsout.inc +++ b/src/net/eathena/packetsout.inc @@ -344,6 +344,7 @@ packet(CMSG_INSTANCE_COMMAND, 0x0000, 0, nullptr); packet(CMSG_ACHIEVEMENT_GET_REWARD, 0x0000, 0, nullptr); packet(CMSG_LOGIN_MOBILE_OTP, 0x0000, 0, nullptr); packet(CMSG_LOGIN_OTP_CODE, 0x0000, 0, nullptr); +packet(CMSG_INVENTORY_EXPAND, 0x0000, 0, nullptr); #else // 20040713 if (packetVersion >= 20040713) @@ -1464,6 +1465,18 @@ if (packetVersionRe >= 20180718) packet(CMSG_PLAYER_SELECT_STYLE, 0x0afc, 16, clif->pReqStyleChange); } +// 20181031 main +if (packetVersionMain >= 20181031) +{ + packet(CMSG_INVENTORY_EXPAND, 0x0b14, 2, clif->pInventoryExpansion); +} + +// 20181031 re +if (packetVersionRe >= 20181031) +{ + packet(CMSG_INVENTORY_EXPAND, 0x0b14, 2, clif->pInventoryExpansion); +} + // 20181114 main if (packetVersionMain >= 20181114) { @@ -1478,4 +1491,10 @@ if (packetVersionRe >= 20181114) packet(CMSG_LOGIN_OTP_CODE, 0x0ad0, 11, lclif->p->parse_CA_OTP_CODE); } +// 20181114 zero +if (packetVersionZero >= 20181114) +{ + packet(CMSG_INVENTORY_EXPAND, 0x0b14, 2, clif->pInventoryExpansion); +} + #endif |