fix being told youre afk twice if you use /afk before the timer runs out

This commit is contained in:
in1tiate 2021-04-15 06:48:07 -05:00
parent a32b33d957
commit 9c6fa22ee5

View File

@ -324,7 +324,8 @@ Server* AOClient::getServer() { return server; }
void AOClient::onAfkTimeout() void AOClient::onAfkTimeout()
{ {
sendServerMessage("You are now AFK."); if (!is_afk)
sendServerMessage("You are now AFK.");
is_afk = true; is_afk = true;
} }