Build 29072514

This commit is contained in:
Renan LE CARO 2025-04-11 07:55:06 +02:00
parent 96aae001b4
commit ccb99ce17d
7 changed files with 21 additions and 10 deletions

View file

@ -1,5 +1,5 @@
// The version of the cache.
const VERSION = "29071903";
const VERSION = "29072514";
// The name of the cache
const CACHE_NAME = `breakout-71-${VERSION}`;

View file

@ -1 +1 @@
"29071903"
"29072514"

View file

@ -1108,7 +1108,12 @@ export function getDashOffset(gameState: GameState) {
}
function getCoinRenderColor(gameState: GameState, coin: Coin) {
if (gameState.perks.metamorphosis || isOptionOn("colorful_coins"))
if (
gameState.perks.metamorphosis ||
isOptionOn("colorful_coins") ||
gameState.perks.hypnosis ||
gameState.perks.rainbow
)
return coin.color;
return "#ffd300";
}