From a32b33d957d7d305d94d705bc2867678c37849fd Mon Sep 17 00:00:00 2001 From: in1tiate Date: Thu, 15 Apr 2021 06:44:14 -0500 Subject: [PATCH] even more elegant repeat afk fix --- include/aoclient.h | 1 + src/aoclient.cpp | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/include/aoclient.h b/include/aoclient.h index 598ead6..be39612 100644 --- a/include/aoclient.h +++ b/include/aoclient.h @@ -55,6 +55,7 @@ class AOClient : public QObject { joined(false), current_area(0), current_char(""), socket(p_socket), server(p_server), is_partial(false), last_wtce_time(0) { afk_timer = new QTimer; + afk_timer->setSingleShot(true); connect(afk_timer, SIGNAL(timeout()), this, SLOT(onAfkTimeout())); }; diff --git a/src/aoclient.cpp b/src/aoclient.cpp index 55f1a58..7e37fef 100644 --- a/src/aoclient.cpp +++ b/src/aoclient.cpp @@ -326,7 +326,6 @@ void AOClient::onAfkTimeout() { sendServerMessage("You are now AFK."); is_afk = true; - afk_timer->stop(); } AOClient::~AOClient() {