mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-22 04:56:15 -04:00
Build 29060283
This commit is contained in:
parent
8104b8d4a9
commit
eb05f7d182
6 changed files with 11 additions and 9 deletions
|
@ -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" &&
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue