diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-03 16:12:40 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-03 16:12:40 +0300 |
commit | d2d224167569bba11298f07908c02372aef0070a (patch) | |
tree | bc84896627146321207ba0fc534541326d76cbe7 /src/net/eathena | |
parent | e183ff2fa9bfc3c9f61130209e191dae4ce2a886 (diff) | |
download | plus-d2d224167569bba11298f07908c02372aef0070a.tar.gz plus-d2d224167569bba11298f07908c02372aef0070a.tar.bz2 plus-d2d224167569bba11298f07908c02372aef0070a.tar.xz plus-d2d224167569bba11298f07908c02372aef0070a.zip |
Fix packets mapping for plain hercules.
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/packetsin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index f479ead2a..fcfee4524 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -439,7 +439,7 @@ packet(SMSG_WHISPER_RESPONSE, 0x09df, 7, &ChatRecv::processWhispe packet(SMSG_WHO_ANSWER, 0x00c2, 6, &Ea::GameRecv::processWhoAnswer); // 20150000 fix -if (serverVersion >= 11) +if (serverVersion >= 11 || serverVersion == 0) { packet(SMSG_BEING_VISIBLE, 0x09dd, -1, &BeingRecv::processBeingVisible); packet(SMSG_BEING_ACTION2, 0x08c8, 34, &BeingRecv::processBeingAction2); |