From 42ca1d277912305f98debea0efdcc0f0ef375238 Mon Sep 17 00:00:00 2001 From: in1tiate Date: Thu, 15 Apr 2021 06:40:07 -0500 Subject: [PATCH] fix AFK message being sent repeatedly --- src/aoclient.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/aoclient.cpp b/src/aoclient.cpp index 3136dd5..b425683 100644 --- a/src/aoclient.cpp +++ b/src/aoclient.cpp @@ -324,8 +324,9 @@ Server* AOClient::getServer() { return server; } void AOClient::onAfkTimeout() { + if (!is_afk) + sendServerMessage("You are now AFK."); is_afk = true; - sendServerMessage("You are now AFK."); } AOClient::~AOClient() {