diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-12-19 07:10:52 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2019-01-14 20:18:10 +0300 |
commit | c3f336667cf2a1d51f28ffae47631ca6f2937f64 (patch) | |
tree | 49513fad8fbcb4371e4cdb12da0e50c4ea76faa8 /src/map/clif.c | |
parent | 8cbe11afe437388c71ca79132d06048cd4305368 (diff) | |
download | hercules-c3f336667cf2a1d51f28ffae47631ca6f2937f64.tar.gz hercules-c3f336667cf2a1d51f28ffae47631ca6f2937f64.tar.bz2 hercules-c3f336667cf2a1d51f28ffae47631ca6f2937f64.tar.xz hercules-c3f336667cf2a1d51f28ffae47631ca6f2937f64.zip |
Add inventory expansion packets to main and re clients with version 20181219
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 28b953de5..c25f5a9af 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -3079,7 +3079,7 @@ static void clif_cartItems(struct map_session_data *sd, enum inventory_type type static void clif_inventoryExpansionInfo(struct map_session_data *sd) { -#if PACKETVER_ZERO_NUM >= 20181212 +#if PACKETVER_MAIN_NUM >= 20181219 || PACKETVER_RE_NUM >= 20181219 || PACKETVER_ZERO_NUM >= 20181212 nullpo_retv(sd); const int fd = sd->fd; @@ -3093,7 +3093,7 @@ static void clif_inventoryExpansionInfo(struct map_session_data *sd) static void clif_inventoryExpandAck(struct map_session_data *sd, enum expand_inventory result, int itemId) { -#if PACKETVER_ZERO_NUM >= 20181212 +#if PACKETVER_MAIN_NUM >= 20181219 || PACKETVER_RE_NUM >= 20181219 || PACKETVER_ZERO_NUM >= 20181212 nullpo_retv(sd); const int fd = sd->fd; @@ -3108,7 +3108,7 @@ static void clif_inventoryExpandAck(struct map_session_data *sd, enum expand_inv static void clif_inventoryExpandResult(struct map_session_data *sd, enum expand_inventory_result result) { -#if PACKETVER_ZERO_NUM >= 20181212 +#if PACKETVER_MAIN_NUM >= 20181219 || PACKETVER_RE_NUM >= 20181219 || PACKETVER_ZERO_NUM >= 20181212 nullpo_retv(sd); const int fd = sd->fd; |