From 1a7c23f404efb10ceaa72cf38f3b9c1ab1309c01 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Thu, 15 Apr 2021 06:49:09 -0500 Subject: [PATCH] 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 --- src/commands.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/commands.cpp b/src/commands.cpp index eb45cde..135c06a 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -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)