summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-03-10 23:29:55 +0300
committerAndrei Karas <akaras@inbox.ru>2017-03-21 06:11:23 +0300
commit964268da6cbf76dc9f2fb53d874061b5634f3759 (patch)
treee3e3a3b1d62d6e1e81f3c1bbfad588a951774e8f /src/map/clif.c
parent2ea08e0e58004667f51e56a5295767ac6d1be49b (diff)
downloadhercules-964268da6cbf76dc9f2fb53d874061b5634f3759.tar.gz
hercules-964268da6cbf76dc9f2fb53d874061b5634f3759.tar.bz2
hercules-964268da6cbf76dc9f2fb53d874061b5634f3759.tar.xz
hercules-964268da6cbf76dc9f2fb53d874061b5634f3759.zip
Fix map server auth packet for clients >= 20160330.
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 8fae28e74..9e20510ad 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -677,7 +677,8 @@ void clif_authok(struct map_session_data *sd)
#if PACKETVER >= 20080102
p.font = sd->status.font;
#endif
-#if PACKETVER >= 20141016
+// Some clients smaller than 20160330 cant be tested [4144]
+#if PACKETVER >= 20141016 && PACKETVER < 20160330
p.sex = sd->status.sex;
#endif
clif->send(&p,sizeof(p),&sd->bl,SELF);