1
0

Reduce chance of salto in joy animation to 20%

This commit is contained in:
2025-05-26 11:23:15 +02:00
parent f685a45996
commit e5e5acc012

View File

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