diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-13 00:32:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-13 00:32:21 +0300 |
commit | 3d3642ed7a5e698ab9363b2bc9e0aff53d9c15af (patch) | |
tree | 80bcdb3fa2167423b9bb376a9c8eb14f4dc13f67 /src/map/clif.c | |
parent | 1560889f9ee36d2a530321c4866e6b12ad0c7d99 (diff) | |
download | hercules-3d3642ed7a5e698ab9363b2bc9e0aff53d9c15af.tar.gz hercules-3d3642ed7a5e698ab9363b2bc9e0aff53d9c15af.tar.bz2 hercules-3d3642ed7a5e698ab9363b2bc9e0aff53d9c15af.tar.xz hercules-3d3642ed7a5e698ab9363b2bc9e0aff53d9c15af.zip |
Reported rodex bug fixes.
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 2644194c7..28b20c9e2 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -19678,7 +19678,8 @@ void clif_rodex_request_items(struct map_session_data *sd, int8 opentype, int64 void clif_rodex_icon(int fd, bool show) { -#if PACKETVER >= 20140716 +// packet add date is 20140716, but from players reports it wrong. Using closer known correct version. +#if PACKETVER >= 20150513 WFIFOHEAD(fd, 3); WFIFOW(fd, 0) = rodexicon; WFIFOB(fd, 2) = (show == true ? 1 : 0); |