From 59a130d1ad645563276b9a00e4cce6bd966c059d Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 03:57:50 +0200 Subject: [PATCH] Adjust minimum stroke distance for joy animation in animeCat.js --- animeCat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animeCat.js b/animeCat.js index b72618e..3be419c 100644 --- a/animeCat.js +++ b/animeCat.js @@ -170,7 +170,7 @@ _bindMouseHold() { // Timer für Joy-Animation, aber NUR wenn genug gestreichelt holdTimer = setTimeout(() => { - if (moveDist >= 100) { // mind. 100px gestreichelt! + if (moveDist >= 75) { // mind. 75px gestreichelt! joyActive = true; this._runJoyAnimation(() => { joyActive = false;