Build 29060283

This commit is contained in:
Renan LE CARO 2025-04-02 20:03:57 +02:00
parent 8104b8d4a9
commit eb05f7d182
6 changed files with 11 additions and 9 deletions

View file

@ -222,9 +222,10 @@ export function increaseCombo(
x: number,
y: number,
) {
if (by > 0) {
gameState.combo += by;
if (by <= 0) {
return;
}
gameState.combo += by;
if (
isOptionOn("comboIncreaseTexts") &&
typeof x !== "undefined" &&