diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-16 17:13:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-16 17:13:48 +0300 |
commit | 1f4844a5c4c958fe9ca8767e8f820c923549e0b7 (patch) | |
tree | fbecc929d33f84dfbbaedb0923aace70c0240c85 /src/net | |
parent | f78dea9a6448a3705fcdb8165483cbac0fe60ec0 (diff) | |
download | plus-1f4844a5c4c958fe9ca8767e8f820c923549e0b7.tar.gz plus-1f4844a5c4c958fe9ca8767e8f820c923549e0b7.tar.bz2 plus-1f4844a5c4c958fe9ca8767e8f820c923549e0b7.tar.xz plus-1f4844a5c4c958fe9ca8767e8f820c923549e0b7.zip |
eathena: remove packet SMSG_PARTY_UPDATE_HP.
Diffstat (limited to 'src/net')
-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 d84ab0036..49d6105c0 100644 --- a/src/net/eathena/partyhandler.cpp +++ b/src/net/eathena/partyhandler.cpp @@ -56,7 +56,6 @@ PartyHandler::PartyHandler() : SMSG_PARTY_INVITED, SMSG_PARTY_SETTINGS, SMSG_PARTY_LEAVE, - SMSG_PARTY_UPDATE_HP, SMSG_PARTY_UPDATE_COORDS, SMSG_PARTY_MESSAGE, SMSG_PARTY_INVITATION_STATS, @@ -95,9 +94,6 @@ void PartyHandler::handleMessage(Net::MessageIn &msg) case SMSG_PARTY_LEAVE: processPartyLeave(msg); break; - case SMSG_PARTY_UPDATE_HP: - processPartyUpdateHp(msg); - break; case SMSG_PARTY_UPDATE_COORDS: processPartyUpdateCoords(msg); break; diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index 62b5b019e..8170403b4 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -174,7 +174,6 @@ #define SMSG_PARTY_INVITED 0x02c6 #define SMSG_PARTY_SETTINGS 0x07d8 #define SMSG_PARTY_LEAVE 0x0105 -#define SMSG_PARTY_UPDATE_HP 0x0106 #define SMSG_PARTY_UPDATE_COORDS 0x0107 #define SMSG_PARTY_MESSAGE 0x0109 #define SMSG_PARTY_INVITATION_STATS 0x02c9 |