diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-16 13:33:30 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-16 13:33:30 +0300 |
commit | 6010904f60d62b8f9e2861e6556374a5edd3c67a (patch) | |
tree | 76e66a630027e5cd79d3c4c0602d498360c932e4 /src/net/eathena/loginhandler.cpp | |
parent | 320fd14cf5ec9197f8c12b9bd69536d3a62528ef (diff) | |
download | mv-6010904f60d62b8f9e2861e6556374a5edd3c67a.tar.gz mv-6010904f60d62b8f9e2861e6556374a5edd3c67a.tar.bz2 mv-6010904f60d62b8f9e2861e6556374a5edd3c67a.tar.xz mv-6010904f60d62b8f9e2861e6556374a5edd3c67a.zip |
eathena: remove packet SMSG_CHAR_PASSWORD_RESPONSE.
Diffstat (limited to 'src/net/eathena/loginhandler.cpp')
-rw-r--r-- | src/net/eathena/loginhandler.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/net/eathena/loginhandler.cpp b/src/net/eathena/loginhandler.cpp index 7153468aa..b0a649ed4 100644 --- a/src/net/eathena/loginhandler.cpp +++ b/src/net/eathena/loginhandler.cpp @@ -53,7 +53,6 @@ LoginHandler::LoginHandler() : SMSG_LOGIN_DATA, SMSG_LOGIN_ERROR, SMSG_LOGIN_ERROR2, - SMSG_CHAR_PASSWORD_RESPONSE, SMSG_SERVER_VERSION_RESPONSE, SMSG_UPDATE_HOST, 0 @@ -70,10 +69,6 @@ void LoginHandler::handleMessage(Net::MessageIn &msg) { switch (msg.getId()) { - case SMSG_CHAR_PASSWORD_RESPONSE: - processCharPasswordResponse(msg); - break; - case SMSG_LOGIN_DATA: processLoginData(msg); break; |