diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-25 18:13:48 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-25 18:13:48 +0300 |
commit | c1657f9dd2099796c6b20b9672d500aee30e205b (patch) | |
tree | 07e274728a1ec25c8890abf07ac9943818381c55 /src/net/tmwa/questhandler.h | |
parent | a886446d41ed6656afbdd348b6dc6cb617309040 (diff) | |
download | plus-c1657f9dd2099796c6b20b9672d500aee30e205b.tar.gz plus-c1657f9dd2099796c6b20b9672d500aee30e205b.tar.bz2 plus-c1657f9dd2099796c6b20b9672d500aee30e205b.tar.xz plus-c1657f9dd2099796c6b20b9672d500aee30e205b.zip |
Move all receive (process) methods into protected.
Diffstat (limited to 'src/net/tmwa/questhandler.h')
-rw-r--r-- | src/net/tmwa/questhandler.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/tmwa/questhandler.h b/src/net/tmwa/questhandler.h index 4fcd470e1..c63fa56b0 100644 --- a/src/net/tmwa/questhandler.h +++ b/src/net/tmwa/questhandler.h @@ -38,12 +38,12 @@ class QuestHandler final : public MessageHandler, void handleMessage(Net::MessageIn &msg) override final; + void setQeustActiveState(const int questId, + const bool active) const override final; + protected: static void processSetQuestVar(Net::MessageIn &msg); static void processPlayerQuests(Net::MessageIn &msg); - - void setQeustActiveState(const int questId, - const bool active) const override final; }; } // namespace TmwAthena |