diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-06-05 18:04:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-06-05 18:12:39 +0300 |
commit | 2977a6e00056647c1637db79ae51a151086203cf (patch) | |
tree | b00906b3266b9ec61bb84082ee49a41357d8be16 /src/net/eathena/packetsin.inc | |
parent | 4c41a3eaa82e2e11f2ee4da3513f25e1095c3a12 (diff) | |
download | mv-2977a6e00056647c1637db79ae51a151086203cf.tar.gz mv-2977a6e00056647c1637db79ae51a151086203cf.tar.bz2 mv-2977a6e00056647c1637db79ae51a151086203cf.tar.xz mv-2977a6e00056647c1637db79ae51a151086203cf.zip |
Add packet SMSG_LOGIN_DATA 0x0ac4.
Diffstat (limited to 'src/net/eathena/packetsin.inc')
-rw-r--r-- | src/net/eathena/packetsin.inc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/net/eathena/packetsin.inc b/src/net/eathena/packetsin.inc index 57c6add4a..6360b0e24 100644 --- a/src/net/eathena/packetsin.inc +++ b/src/net/eathena/packetsin.inc @@ -67,7 +67,7 @@ packet(SMSG_RANKS_LIST, 0x0000, 0, nullptr, packet(SMSG_CHAR_CHARACTERS, 0x0000, 0, nullptr, 0); // login server, unknown version -packet(SMSG_LOGIN_DATA, 0x0069, -1, &Ea::LoginRecv::processLoginData, 0); +packet(SMSG_LOGIN_DATA, 0x0069, -1, &LoginRecv::processLoginData, 0); packet(SMSG_LOGIN_CODING_KEY, 0x01dc, -1, &LoginRecv::processCondingKey, 0); packet(SMSG_LOGIN_ERROR, 0x006a, 23, &Ea::LoginRecv::processLoginError, 0); @@ -887,6 +887,12 @@ if (packetVersion >= 20160330) packet(SMSG_MAP_LOGIN_SUCCESS, 0x02eb, 13, &GameRecv::processMapLogin, 20080102); } +// 20170315 +if (packetVersion >= 20170315) +{ + packet(SMSG_LOGIN_DATA, 0x0ac4, -1, &LoginRecv::processLoginData, 20170315); +} + // 20170329 if (packetVersion >= 20170329) { |