diff options
Diffstat (limited to 'src/net/tmwa/questhandler.cpp')
-rw-r--r-- | src/net/tmwa/questhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/tmwa/questhandler.cpp b/src/net/tmwa/questhandler.cpp index bb36ad820..378f53f97 100644 --- a/src/net/tmwa/questhandler.cpp +++ b/src/net/tmwa/questhandler.cpp @@ -67,7 +67,7 @@ void QuestHandler::handleMessage(Net::MessageIn &msg) BLOCK_END("QuestHandler::handleMessage") } -void QuestHandler::processSetQuestVar(Net::MessageIn &msg A_UNUSED) const +void QuestHandler::processSetQuestVar(Net::MessageIn &msg) const { const int var = msg.readInt16(); // variable const int val = msg.readInt32(); // value @@ -83,7 +83,7 @@ void QuestHandler::processSetQuestVar(Net::MessageIn &msg A_UNUSED) const } } -void QuestHandler::processPlayerQuests(Net::MessageIn &msg A_UNUSED) const +void QuestHandler::processPlayerQuests(Net::MessageIn &msg) const { const int count = (msg.readInt16() - 4) / 6; for (int f = 0; f < count; f ++) |