simply start population calculation

This commit is contained in:
Evan
2025-02-03 12:37:04 -08:00
parent c109d23f9f
commit bbf72bd14f
7 changed files with 36 additions and 45 deletions
-1
View File
@@ -30,7 +30,6 @@ export class TopBar extends LitElement implements Layer {
if (!myPlayer?.isAlive() || this.game?.inSpawnPhase()) {
return html``;
}
console.log("rendering top bar");
const popRate = this.game.config().populationIncreaseRate(myPlayer) * 10;
const maxPop = this.game.config().maxPopulation(myPlayer);
const goldPerSecond = this.game.config().goldAdditionRate(myPlayer) * 10;