From 67f7acc34aac38ee59828c30e3f092a779a87ddc Mon Sep 17 00:00:00 2001 From: MangosArentLiterature <58055358+MangosArentLiterature@users.noreply.github.com> Date: Fri, 16 Apr 2021 13:57:33 -0500 Subject: [PATCH] Move cmdAfk to messaging category cmdAfk is a command that changes the clients status to AFK. As such, it belongs under the messaging category, which includes commands that handle a clients self-management. --- include/aoclient.h | 19 +++++++++---------- src/commands/area.cpp | 6 ------ src/commands/messaging.cpp | 6 ++++++ 3 files changed, 15 insertions(+), 16 deletions(-) diff --git a/include/aoclient.h b/include/aoclient.h index 3ab8429..4b8f1cc 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -1438,6 +1438,15 @@ class AOClient : public QObject { */ void cmdUnShake(int argc, QStringList argv); + /** + * @brief Toggles whether this client is considered AFK. + * + * @details No arguments. + * + * @iscommand + */ + void cmdAfk(int argc, QStringList argv); + ///@} /** @@ -1587,16 +1596,6 @@ class AOClient : public QObject { */ void cmdCurrentMusic(int argc, QStringList argv); - - /** - * @brief Toggles whether this client is considered AFK. - * - * @details No arguments. - * - * @iscommand - */ - void cmdAfk(int argc, QStringList argv); - ///@} /** diff --git a/src/commands/area.cpp b/src/commands/area.cpp index f81c618..d471ef6 100644 --- a/src/commands/area.cpp +++ b/src/commands/area.cpp @@ -283,9 +283,3 @@ void AOClient::cmdJudgeLog(int argc, QStringList argv) sendServerMessage(filteredmessage); } } - -void AOClient::cmdAfk(int argc, QStringList argv) -{ - is_afk = true; - sendServerMessage("You are now AFK."); -} diff --git a/src/commands/messaging.cpp b/src/commands/messaging.cpp index 9a852a6..e8517c2 100644 --- a/src/commands/messaging.cpp +++ b/src/commands/messaging.cpp @@ -274,3 +274,9 @@ void AOClient::cmdUnShake(int argc, QStringList argv) } target->is_shaken = false; } + +void AOClient::cmdAfk(int argc, QStringList argv) +{ + is_afk = true; + sendServerMessage("You are now AFK."); +}