From 5e449b7b9bd03e50ffe12aa314354a48ca375fec Mon Sep 17 00:00:00 2001 From: Haka <76921756+Hakorr@users.noreply.github.com> Date: Sun, 22 Dec 2024 23:44:53 +0200 Subject: [PATCH] Update acas.user.js --- acas.user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acas.user.js b/acas.user.js index 5931f53..ad6f630 100644 --- a/acas.user.js +++ b/acas.user.js @@ -936,7 +936,7 @@ class AutomaticMove { { minPieces: 1, maxPieces: 2, timeRange: [500, 1200] }, // Extremely Few Pieces (1 piece) ]; - this.shouldHesitate = this.isLegit && Math.random() < 1; + this.shouldHesitate = this.isLegit && Math.random() < 0.1; this.shouldHesitateTwice = this.isLegit && Math.random() < 0.5; const legitTotalMoveTime = this.calculateMoveTime(getPieceAmount());