summaryrefslogtreecommitdiff
path: root/src/emap/clif.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-04-04 17:36:48 +0300
committerAndrei Karas <akaras@inbox.ru>2017-04-04 17:36:48 +0300
commit8fe364817c3e670f1d36d9fa09a8be5a2668a150 (patch)
tree4bfd0cc83ad7e8551d85c75eecfe4bebce59a6ad /src/emap/clif.c
parent6b14df3a15ecced9b792c1e3a65803ee8d93735c (diff)
downloadevol-hercules-8fe364817c3e670f1d36d9fa09a8be5a2668a150.tar.gz
evol-hercules-8fe364817c3e670f1d36d9fa09a8be5a2668a150.tar.bz2
evol-hercules-8fe364817c3e670f1d36d9fa09a8be5a2668a150.tar.xz
evol-hercules-8fe364817c3e670f1d36d9fa09a8be5a2668a150.zip
Update for latest hercules changes.
Diffstat (limited to 'src/emap/clif.c')
-rw-r--r--src/emap/clif.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/emap/clif.c b/src/emap/clif.c
index 54df930..a5e3ecd 100644
--- a/src/emap/clif.c
+++ b/src/emap/clif.c
@@ -1816,7 +1816,12 @@ void eclif_party_info_post(struct party_data *p,
void eclif_parse_NpcStringInput(int fd,
struct map_session_data* sd)
{
- int message_len = RFIFOW(fd, 2) - 8;
+// [4144] can't confirm exact client version. At least >= correct for 20150513
+#if PACKETVER >= 20151029
+ int message_len = RFIFOW(fd, 2) - 7;
+#else
+ int message_len = RFIFOW(fd, 2) - 8;
+#endif
int npcid = RFIFOL(fd, 4);
const char *message = RFIFOP(fd, 8);