diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-09-06 19:59:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-06 19:59:41 +0300 |
commit | 2188a7dd107abcdf60a002c76f70b63bceafe715 (patch) | |
tree | 2d5510fccdc61e165b951e7f0ad2ba62ba2265b9 /src/net | |
parent | bb4d09f845aba5eabd3bce15feb21033f4883d62 (diff) | |
download | plus-2188a7dd107abcdf60a002c76f70b63bceafe715.tar.gz plus-2188a7dd107abcdf60a002c76f70b63bceafe715.tar.bz2 plus-2188a7dd107abcdf60a002c76f70b63bceafe715.tar.xz plus-2188a7dd107abcdf60a002c76f70b63bceafe715.zip |
Drop support for plugin version 16.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/eathena/beingrecv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/beingrecv.cpp b/src/net/eathena/beingrecv.cpp index ccf00cd90..0372a829e 100644 --- a/src/net/eathena/beingrecv.cpp +++ b/src/net/eathena/beingrecv.cpp @@ -1771,7 +1771,7 @@ void BeingRecv::processBeingAttrs(Net::MessageIn &msg) uint16_t mount = 0; mount = msg.readInt16("mount"); int language = -1; - if (serverVersion >= 17 && len > 14) + if (len > 14) language = msg.readInt16("language"); int clanId = 0; if (len > 16) |