From f3380220d8d23e0efd5260be5f87399250510d50 Mon Sep 17 00:00:00 2001 From: ZareMate <0.zaremate@gmail.com> Date: Wed, 1 Apr 2026 18:46:50 +0200 Subject: [PATCH] fix: increase AFK retry delay from 5000ms to 7500ms --- afk.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afk.js b/afk.js index 97d8dc4..fd71b3a 100644 --- a/afk.js +++ b/afk.js @@ -31,7 +31,7 @@ const LOG_FILE = path.join( `afk-${toSafeFilePart(runtimeUsername)}.log`, ); const TELEPORT_DETECT_REGEX = /you teleported to\b/i; -const AFK_RETRY_DELAY_MS = 5000; +const AFK_RETRY_DELAY_MS = 7500; const AFK_MIN_NUMBER = 1; const AFK_MAX_NUMBER = 50;