From 9c6fa22ee5f3277965339b2fe93a54def9e1aef3 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Thu, 15 Apr 2021 06:48:07 -0500 Subject: [PATCH] fix being told youre afk twice if you use /afk before the timer runs out --- src/aoclient.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/aoclient.cpp b/src/aoclient.cpp index 7e37fef..b425683 100644 --- a/src/aoclient.cpp +++ b/src/aoclient.cpp @@ -324,7 +324,8 @@ Server* AOClient::getServer() { return server; } void AOClient::onAfkTimeout() { - sendServerMessage("You are now AFK."); + if (!is_afk) + sendServerMessage("You are now AFK."); is_afk = true; }