summaryrefslogtreecommitdiff
path: root/src/net/eathena/packetsout.inc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2019-01-25 02:23:18 +0300
committerAndrei Karas <akaras@inbox.ru>2019-01-25 02:39:13 +0300
commite7884fd8de40923ebadb0e9d810c597215821d65 (patch)
treed5dc79030ec9f47d49fdeb5be15f7010c1e81041 /src/net/eathena/packetsout.inc
parent08c14216d4b628ea7ecfbc2e7448632ec514f3db (diff)
downloadplus-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.inc19
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