mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-06-16 03:05:03 -04:00
Build 29133750
This commit is contained in:
parent
c5925675a0
commit
8234aaa829
9 changed files with 19 additions and 14 deletions
|
@ -533,7 +533,10 @@ export function explodeBrick(
|
|||
}
|
||||
|
||||
if (gameState.perks.picky_eater) {
|
||||
comboGain += gameState.perks.picky_eater * countBrickColors(gameState);
|
||||
comboGain += Math.max(
|
||||
0,
|
||||
gameState.perks.picky_eater * (countBrickColors(gameState) - 1),
|
||||
);
|
||||
}
|
||||
|
||||
if (redRowReach !== -1) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue