1
0

Increase chance of Salto in animeCat.js

This commit is contained in:
2025-05-26 05:44:26 +02:00
parent e54738c538
commit d7900cefe7

View File

@@ -317,7 +317,7 @@ window.AnimeCat = class AnimeCat {
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);