Build 29133750

This commit is contained in:
Renan LE CARO 2025-05-23 20:30:20 +02:00
parent c5925675a0
commit 8234aaa829
9 changed files with 19 additions and 14 deletions

View file

@ -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) {