fix: increase AFK retry delay from 5000ms to 7500ms

This commit is contained in:
ZareMate 2026-04-01 18:46:50 +02:00
parent 68cb80b0de
commit f3380220d8

2
afk.js
View File

@ -31,7 +31,7 @@ const LOG_FILE = path.join(
`afk-${toSafeFilePart(runtimeUsername)}.log`, `afk-${toSafeFilePart(runtimeUsername)}.log`,
); );
const TELEPORT_DETECT_REGEX = /you teleported to\b/i; 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_MIN_NUMBER = 1;
const AFK_MAX_NUMBER = 50; const AFK_MAX_NUMBER = 50;