From 055121edec3df238dc647af5bf562a7ed0822103 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 07:21:49 +0200 Subject: [PATCH] Revert chance of salto in _runJoyAnimation --- animeCat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animeCat.js b/animeCat.js index fddebbd..a4a3b27 100644 --- a/animeCat.js +++ b/animeCat.js @@ -390,7 +390,7 @@ _runJoyAnimation(onFinish) { img.src = this.images.joy || this.images.default; // 20% Chance auf Salto! - const salto = Math.random() < 0.2; + const salto = Math.random() < 1; // Bubble abkoppeln wie gehabt this.container.appendChild(this.bubble);