diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-29 14:21:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-29 14:21:43 +0300 |
commit | 32bf758a1267689cac65e10f69c73b8efa40bb94 (patch) | |
tree | 243fa0514f41877c029bd750c878c212e3eac06e /src/net/tmwa | |
parent | 97db9f1a4f677fe0433b7cad65b5146f5c7c9c00 (diff) | |
download | plus-32bf758a1267689cac65e10f69c73b8efa40bb94.tar.gz plus-32bf758a1267689cac65e10f69c73b8efa40bb94.tar.bz2 plus-32bf758a1267689cac65e10f69c73b8efa40bb94.tar.xz plus-32bf758a1267689cac65e10f69c73b8efa40bb94.zip |
eathena: add packet CMSG_BATTLE_CHECK_STATE 0x090a.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/battlegroundhandler.cpp | 4 | ||||
-rw-r--r-- | src/net/tmwa/battlegroundhandler.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/net/tmwa/battlegroundhandler.cpp b/src/net/tmwa/battlegroundhandler.cpp index 916e27a33..e9a26180b 100644 --- a/src/net/tmwa/battlegroundhandler.cpp +++ b/src/net/tmwa/battlegroundhandler.cpp @@ -58,4 +58,8 @@ void BattleGroundHandler::beginAck(const bool result A_UNUSED, { } +void BattleGroundHandler::checkState(const std::string &name A_UNUSED) const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/battlegroundhandler.h b/src/net/tmwa/battlegroundhandler.h index c5fdeea27..cb8e5b679 100644 --- a/src/net/tmwa/battlegroundhandler.h +++ b/src/net/tmwa/battlegroundhandler.h @@ -49,6 +49,7 @@ class BattleGroundHandler final : public MessageHandler, const std::string &bgName, const std::string &gameName) const override final; + void checkState(const std::string &name) const override final; }; } // namespace TmwAthena |