diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-03-29 13:42:39 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-03-29 13:42:39 +0300 |
commit | cc19f13863bc331e8e7a34f850370fc3bd32826a (patch) | |
tree | 2917fba1632e934bfc7981d05341fe68ba1d10d3 /src/net/tmwa | |
parent | 5b1359f867190b46f3107f4e3ba85d484e14c130 (diff) | |
download | plus-cc19f13863bc331e8e7a34f850370fc3bd32826a.tar.gz plus-cc19f13863bc331e8e7a34f850370fc3bd32826a.tar.bz2 plus-cc19f13863bc331e8e7a34f850370fc3bd32826a.tar.xz plus-cc19f13863bc331e8e7a34f850370fc3bd32826a.zip |
eathena: add packet CMSG_BATTLE_REGISTER 0x08d7.
Diffstat (limited to 'src/net/tmwa')
-rw-r--r-- | src/net/tmwa/battlegroundhandler.cpp | 6 | ||||
-rw-r--r-- | src/net/tmwa/battlegroundhandler.h | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/net/tmwa/battlegroundhandler.cpp b/src/net/tmwa/battlegroundhandler.cpp index 969628ec2..46c92d81b 100644 --- a/src/net/tmwa/battlegroundhandler.cpp +++ b/src/net/tmwa/battlegroundhandler.cpp @@ -42,4 +42,10 @@ void BattleGroundHandler::handleMessage(Net::MessageIn &msg A_UNUSED) { } +void BattleGroundHandler::registerBg(const BattleGroundType::Type &type + A_UNUSED, + const std::string &name A_UNUSED) const +{ +} + } // namespace TmwAthena diff --git a/src/net/tmwa/battlegroundhandler.h b/src/net/tmwa/battlegroundhandler.h index 796d02122..4be16d7a5 100644 --- a/src/net/tmwa/battlegroundhandler.h +++ b/src/net/tmwa/battlegroundhandler.h @@ -39,6 +39,9 @@ class BattleGroundHandler final : public MessageHandler, A_DELETE_COPY(BattleGroundHandler) void handleMessage(Net::MessageIn &msg) override final; + + void registerBg(const BattleGroundType::Type &type, + const std::string &name) const override final; }; } // namespace TmwAthena |