mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-22 04:56:15 -04:00
Build 29072514
This commit is contained in:
parent
96aae001b4
commit
ccb99ce17d
7 changed files with 21 additions and 10 deletions
|
@ -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}`;
|
||||
|
|
|
@ -1 +1 @@
|
|||
"29071903"
|
||||
"29072514"
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue