diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-09-14 22:27:47 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-09-14 22:32:25 +0300 |
commit | 6325c78e27607afe99ecc3c3d0cac154ccfd696b (patch) | |
tree | 1a54c4fc393df896aff95324224fcca59dcd3183 /src/net/tmwa | |
parent | b53426b0c7651a7f4b727d9a1f2d2ad843ca7470 (diff) | |
download | plus-6325c78e27607afe99ecc3c3d0cac154ccfd696b.tar.gz plus-6325c78e27607afe99ecc3c3d0cac154ccfd696b.tar.bz2 plus-6325c78e27607afe99ecc3c3d0cac154ccfd696b.tar.xz plus-6325c78e27607afe99ecc3c3d0cac154ccfd696b.zip |
eathena: add packet CMSG_PVP_INFO 0x020f.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/playerhandler.cpp | 4 | ||||
-rw-r--r-- | src/net/tmwa/playerhandler.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp index c4c61bed4..a6517c1ea 100644 --- a/src/net/tmwa/playerhandler.cpp +++ b/src/net/tmwa/playerhandler.cpp @@ -460,4 +460,8 @@ void PlayerHandler::explosionSpirits() const { } +void PlayerHandler::requestPvpInfo() const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/playerhandler.h b/src/net/tmwa/playerhandler.h index b24266836..7a0c5cb54 100644 --- a/src/net/tmwa/playerhandler.h +++ b/src/net/tmwa/playerhandler.h @@ -75,6 +75,8 @@ class PlayerHandler final : public MessageHandler, public Ea::PlayerHandler void explosionSpirits() const override final; + void requestPvpInfo() const override final; + protected: void processPlayerStatUpdate5(Net::MessageIn &msg); |