1
0

Fix chance of salto in _runJoyAnimation

This commit is contained in:
2025-05-26 07:22:06 +02:00
parent 055121edec
commit 35ef5dfebd

View File

@@ -390,7 +390,7 @@ _runJoyAnimation(onFinish) {
img.src = this.images.joy || this.images.default;
// 20% Chance auf Salto!
const salto = Math.random() < 1;
const salto = Math.random() < 0.2;
// Bubble abkoppeln wie gehabt
this.container.appendChild(this.bubble);