mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-26 15:06:16 -04:00
Build 29060283
This commit is contained in:
parent
8104b8d4a9
commit
eb05f7d182
6 changed files with 11 additions and 9 deletions
5
dist/index.html
vendored
5
dist/index.html
vendored
|
@ -1475,7 +1475,7 @@ const upgrades = (0, _upgrades.rawUpgrades).map((u)=>({
|
|||
}));
|
||||
|
||||
},{"./data/palette.json":"ktRBU","./data/levels.json":"8JSUc","./data/version.json":"iyP6E","./upgrades":"1u3Dx","./getLevelBackground":"7OIPf","./levelIcon":"6rQoT","@parcel/transformer-js/src/esmodule-helpers.js":"gkKU3"}],"iyP6E":[function(require,module,exports,__globalThis) {
|
||||
module.exports = JSON.parse("\"29060272\"");
|
||||
module.exports = JSON.parse("\"29060283\"");
|
||||
|
||||
},{}],"1u3Dx":[function(require,module,exports,__globalThis) {
|
||||
var parcelHelpers = require("@parcel/transformer-js/src/esmodule-helpers.js");
|
||||
|
@ -2930,7 +2930,8 @@ function resetCombo(gameState, x, y) {
|
|||
return lost;
|
||||
}
|
||||
function increaseCombo(gameState, by, x, y) {
|
||||
if (by > 0) gameState.combo += by;
|
||||
if (by <= 0) return;
|
||||
gameState.combo += by;
|
||||
if ((0, _options.isOptionOn)("comboIncreaseTexts") && typeof x !== "undefined" && typeof y !== "undefined") makeText(gameState, x, y, "gold", "+" + by, 25, 400 + by);
|
||||
}
|
||||
function decreaseCombo(gameState, by, x, y) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue