1
0

Change salto chance to always occur in animeCat.js

This commit is contained in:
2025-05-26 07:47:13 +02:00
parent 5ded847ea1
commit e42d08658e

View File

@@ -408,7 +408,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
this.container.appendChild(this.bubble);