diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-07-27 02:56:28 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-07-27 02:56:28 +0300 |
commit | ae865d08a0d913e5a5a8e843f4f3be042fca15af (patch) | |
tree | dfaacdd9f04345b9ad3d26dea248a86c03da30e9 /src/net/eathena | |
parent | 232117206ac74c677b3c32db6086f772d9990b11 (diff) | |
download | plus-ae865d08a0d913e5a5a8e843f4f3be042fca15af.tar.gz plus-ae865d08a0d913e5a5a8e843f4f3be042fca15af.tar.bz2 plus-ae865d08a0d913e5a5a8e843f4f3be042fca15af.tar.xz plus-ae865d08a0d913e5a5a8e843f4f3be042fca15af.zip |
Add packet SMSG_LOGIN_ERROR2 0x0b02
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/packetsin.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index 2358574e1..019f0c418 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -1125,6 +1125,13 @@ if (packetVersionMain >= 20180523) packet(SMSG_ROULETTE_INFO_ACK_TYPE, 0x0a1c, -1, &RouletteRecv::processRouletteInfoAckType, 20180523); } +// 20180627 +if (packetVersion >= 20180627) +{ + // can conflict with custom packets + packet(SMSG_LOGIN_ERROR2, 0x0b02, 26, &LoginRecv::processLoginError2, 20180627); +} + // 0 // evol always packets packet(SMSG_SERVER_VERSION_RESPONSE, 0x7531, -1, &LoginRecv::processServerVersion, 0); |