diff options
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 5 | ||||
-rw-r--r-- | src/net/eathena/playerhandler.h | 1 | ||||
-rw-r--r-- | src/net/eathena/protocol.h | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 963a29c52..33a8c611e 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -415,4 +415,9 @@ void PlayerHandler::processPvpInfo(Net::MessageIn &msg) msg.readInt32("pvp point"); } +void PlayerHandler::revive() const +{ + MessageOut outMsg(CMSG_PLAYER_AUTO_REVIVE); +} + } // namespace EAthena diff --git a/src/net/eathena/playerhandler.h b/src/net/eathena/playerhandler.h index b58c1a752..9ff59dcc9 100644 --- a/src/net/eathena/playerhandler.h +++ b/src/net/eathena/playerhandler.h @@ -69,6 +69,7 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler void doriDori() const override final; void explosionSpirits() const override final; void requestPvpInfo() const override final; + void revive() const override final; protected: void processPlayerStatUpdate5(Net::MessageIn &msg); diff --git a/src/net/eathena/protocol.h b/src/net/eathena/protocol.h index dd4848534..cb90f05a9 100644 --- a/src/net/eathena/protocol.h +++ b/src/net/eathena/protocol.h @@ -363,6 +363,7 @@ #define CMSG_DORI_DORI 0x01e7 #define CMSG_EXPLOSION_SPIRITS 0x01ed #define CMSG_PVP_INFO 0x020f +#define CMSG_PLAYER_AUTO_REVIVE 0x0292 #define SMSG_SOLVE_CHAR_NAME 0x0194 #define SMSG_SKILL_CASTING 0x07fb |