1
0

Reduce chance of salto

This commit is contained in:
2025-05-26 05:47:39 +02:00
parent cf28705544
commit d3c946dd27

View File

@@ -316,7 +316,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);