diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-10 21:41:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-10 21:41:43 +0300 |
commit | 421f7cf60e960b340a70fc75022ffaff2558eb48 (patch) | |
tree | 2c67a12a5472c906a6ac92691ed239f020a474d8 /src/net/eathena | |
parent | 0295c338fcb43f10f6dbc664c0f86021464248c7 (diff) | |
download | mv-421f7cf60e960b340a70fc75022ffaff2558eb48.tar.gz mv-421f7cf60e960b340a70fc75022ffaff2558eb48.tar.bz2 mv-421f7cf60e960b340a70fc75022ffaff2558eb48.tar.xz mv-421f7cf60e960b340a70fc75022ffaff2558eb48.zip |
Rename packet SMSG_MVP into SMSG_MVP_EFFECT.
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/chathandler.cpp | 6 | ||||
-rw-r--r-- | src/net/eathena/protocol.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/net/eathena/chathandler.cpp b/src/net/eathena/chathandler.cpp index 07d57dcd0..92aefa370 100644 --- a/src/net/eathena/chathandler.cpp +++ b/src/net/eathena/chathandler.cpp @@ -65,7 +65,7 @@ ChatHandler::ChatHandler() : SMSG_WHISPER_RESPONSE, SMSG_GM_CHAT, SMSG_GM_CHAT2, - SMSG_MVP, + SMSG_MVP_EFFECT, SMSG_IGNORE_ALL_RESPONSE, SMSG_COLOR_MESSAGE, SMSG_CHAT_IGNORE_LIST, @@ -135,8 +135,8 @@ void ChatHandler::handleMessage(Net::MessageIn &msg) processGmChat2(msg); break; - case SMSG_MVP: - processMVP(msg); + case SMSG_MVP_EFFECT: + processMVPEffect(msg); break; case SMSG_IGNORE_ALL_RESPONSE: diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index 0953b82d9..e65f84e61 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -251,7 +251,7 @@ #define SMSG_QUEST_ACTIVATE 0x02b7 #define SMSG_QUEST_NPC_EFFECT 0x0446 -#define SMSG_MVP 0x010c +#define SMSG_MVP_EFFECT 0x010c #define SMSG_RANKS_LIST 0x097d #define SMSG_MONSTER_HP 0x0977 #define SMSG_PLAYER_HP 0x080e |