simplify /afk to just set is_afk to true

previously it would toggle is_afk, but because
sending the command sends a CT packet, you could
never toggle AFK off with /afk because it would have
been toggled off due to activity immediately prior to
using it
This commit is contained in:
in1tiate 2021-04-15 06:49:09 -05:00
parent 9c6fa22ee5
commit 1a7c23f404

View File

@ -1539,9 +1539,8 @@ void AOClient::cmdAllowIniswap(int argc, QStringList argv)
void AOClient::cmdAfk(int argc, QStringList argv)
{
is_afk = !is_afk;
QString state = is_afk ? "now" : "no longer";
sendServerMessage("You are " + state + " AFK.");
is_afk = true;
sendServerMessage("You are now AFK.");
}
QStringList AOClient::buildAreaList(int area_idx)