diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-16 17:05:10 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-16 17:05:10 +0300 |
commit | 020b31d969885d24fcb5e52a005894396a608d02 (patch) | |
tree | 3256a419fc82c171efe5681b30910804c4913fff | |
parent | 5fb0cfc6d741fc1791172f374ed4ac666e73144f (diff) | |
download | plus-020b31d969885d24fcb5e52a005894396a608d02.tar.gz plus-020b31d969885d24fcb5e52a005894396a608d02.tar.bz2 plus-020b31d969885d24fcb5e52a005894396a608d02.tar.xz plus-020b31d969885d24fcb5e52a005894396a608d02.zip |
eathena: remove packet SMSG_PARTY_MOVE.
-rw-r--r-- | src/net/eathena/partyhandler.cpp | 4 | ||||
-rw-r--r-- | src/net/eathena/protocol.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/src/net/eathena/partyhandler.cpp b/src/net/eathena/partyhandler.cpp index ea5b71089..d84ab0036 100644 --- a/src/net/eathena/partyhandler.cpp +++ b/src/net/eathena/partyhandler.cpp @@ -55,7 +55,6 @@ PartyHandler::PartyHandler() : SMSG_PARTY_INVITE_RESPONSE, SMSG_PARTY_INVITED, SMSG_PARTY_SETTINGS, - SMSG_PARTY_MOVE, SMSG_PARTY_LEAVE, SMSG_PARTY_UPDATE_HP, SMSG_PARTY_UPDATE_COORDS, @@ -93,9 +92,6 @@ void PartyHandler::handleMessage(Net::MessageIn &msg) case SMSG_PARTY_SETTINGS: processPartySettings(msg); break; - case SMSG_PARTY_MOVE: - processPartyMove(msg); - break; case SMSG_PARTY_LEAVE: processPartyLeave(msg); break; diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index b87f26311..62b5b019e 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -173,7 +173,6 @@ #define SMSG_PARTY_INVITE_RESPONSE 0x02c5 #define SMSG_PARTY_INVITED 0x02c6 #define SMSG_PARTY_SETTINGS 0x07d8 -#define SMSG_PARTY_MOVE 0x0104 #define SMSG_PARTY_LEAVE 0x0105 #define SMSG_PARTY_UPDATE_HP 0x0106 #define SMSG_PARTY_UPDATE_COORDS 0x0107 |