mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-21 04:26:14 -04:00
Build 29074738
This commit is contained in:
parent
19ee1d0d33
commit
34f6aed001
11 changed files with 29 additions and 16 deletions
|
@ -99,7 +99,9 @@ export function render(gameState: GameState) {
|
|||
`<span class="score" data-tooltip="${t("play.score_tooltip")}">$${gameState.score}</span>`;
|
||||
|
||||
scoreDisplay.className =
|
||||
gameState.lastScoreIncrease > gameState.levelTime - 500 ? "active" : "";
|
||||
(gameState.computer_controlled && "hidden") ||
|
||||
(gameState.lastScoreIncrease > gameState.levelTime - 500 && "active") ||
|
||||
"";
|
||||
|
||||
// Clear
|
||||
if (!isOptionOn("basic") && level.svg && level.color === "#000000") {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue