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.
This commit is contained in:
MangosArentLiterature 2021-04-16 13:57:33 -05:00
parent ea50100acf
commit 67f7acc34a
3 changed files with 15 additions and 16 deletions

View File

@ -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);
///@}
/**

View File

@ -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.");
}

View File

@ -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.");
}