mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-20 20:16:16 -04:00
Build 29048147
This commit is contained in:
parent
35ea8e952a
commit
39b6738805
8 changed files with 836 additions and 751 deletions
|
@ -61,7 +61,7 @@ export function pickedUpgradesHTMl(gameState: GameState) {
|
|||
let list = "";
|
||||
for (let u of upgrades) {
|
||||
for (let i = 0; i < gameState.perks[u.id]; i++)
|
||||
list += `<span title="${u.name}">${icons["icon:" + u.id]}</span>`;
|
||||
list += `<span title="${u.name}">${icons["icon:" + u.id]}</span>`;
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
@ -179,4 +179,4 @@ export function countBricksBelow(gameState: GameState, index: number) {
|
|||
}
|
||||
}
|
||||
return count;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue