mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-22 21:16:14 -04:00
Build 29060283
This commit is contained in:
parent
8104b8d4a9
commit
eb05f7d182
6 changed files with 11 additions and 9 deletions
|
@ -1,5 +1,5 @@
|
|||
// The version of the cache.
|
||||
const VERSION = "29060272";
|
||||
const VERSION = "29060283";
|
||||
|
||||
// The name of the cache
|
||||
const CACHE_NAME = `breakout-71-${VERSION}`;
|
||||
|
|
|
@ -1 +1 @@
|
|||
"29060272"
|
||||
"29060283"
|
||||
|
|
|
@ -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