From 132658aef3dce26c209b4ebad0fa24d55416c7ac Mon Sep 17 00:00:00 2001 From: jsbots <26541518+olesgeras@users.noreply.github.com> Date: Wed, 20 Dec 2023 17:38:58 +0200 Subject: [PATCH] fix: always fineTune --- app/bot/createBot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/bot/createBot.js b/app/bot/createBot.js index e7e7346..6bccf6d 100644 --- a/app/bot/createBot.js +++ b/app/bot/createBot.js @@ -159,7 +159,7 @@ const createBot = (game, { config, settings }, winSwitch, state) => { .split(",") .map((word) => word.trim()); - const moveTo = async ({ pos, randomRange, fineTune = {offset: randomRange, steps: [0, 3]}, forcedNutMouse}) => { + const moveTo = async ({ pos, randomRange, fineTune = {offset: randomRange, steps: [1, 3]}, forcedNutMouse}) => { if (randomRange) { pos.x = pos.x + random(-randomRange, randomRange); pos.y = pos.y + random(-randomRange, randomRange);