diff options
author | Haru <haru@dotalux.com> | 2019-03-11 03:41:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 03:41:21 +0100 |
commit | c2bf96805ea5fdbd8d88bb1ddaf9f0e47a24fd08 (patch) | |
tree | 3ab47f1a5d9c91a3b5b3386b005e025e5cd089cf /src/map/clif.c | |
parent | 7dcd2f45f09513686421aacd90184aca9bcf5854 (diff) | |
parent | 6fcce0935b9bca66c76481ac525443599c394b6a (diff) | |
download | hercules-c2bf96805ea5fdbd8d88bb1ddaf9f0e47a24fd08.tar.gz hercules-c2bf96805ea5fdbd8d88bb1ddaf9f0e47a24fd08.tar.bz2 hercules-c2bf96805ea5fdbd8d88bb1ddaf9f0e47a24fd08.tar.xz hercules-c2bf96805ea5fdbd8d88bb1ddaf9f0e47a24fd08.zip |
Merge pull request #2377 from 4144/updatepackets
Update packets up to 2019-03-06
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index 86b130e88..4c8d2df9c 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -5432,7 +5432,7 @@ static void clif_useskill(struct block_list *bl, int src_id, int dst_id, int dst #if PACKETVER_MAIN_NUM >= 20091124 || PACKETVER_RE_NUM >= 20091124 || defined(PACKETVER_ZERO) p.disposable = 0; #endif -#if PACKETVER_ZERO_NUM >= 20190130 +#if PACKETVER_MAIN_NUM >= 20181212 || PACKETVER_RE_NUM >= 20181212 || PACKETVER_ZERO_NUM >= 20190130 p.unknown = 0; #endif @@ -18580,6 +18580,7 @@ static void clif_search_store_info_ack(struct map_session_data *sd) /// 2 = "You cannot search anymore." (0x706) /// 3 = "You cannot search yet." (0x708) /// 4 = "No sale (purchase) information available." (0x705) +/// 362 = silent error static void clif_search_store_info_failed(struct map_session_data *sd, unsigned char reason) { #if PACKETVER >= 20100601 |