Update stats overlay to show active ant count vs budget
This commit is contained in:
parent
4c11924580
commit
9f3ecb57e8
1 changed files with 1 additions and 1 deletions
|
|
@ -60,7 +60,7 @@ export default class StatsOverlay {
|
||||||
this.tpsEl.textContent = `${Math.round(tps)}`;
|
this.tpsEl.textContent = `${Math.round(tps)}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.antsEl.textContent = `${colonyStats.totalAnts}`;
|
this.antsEl.textContent = `${colonyStats.totalAnts} / ${Config.antBudget}`;
|
||||||
const carrying = Math.round(
|
const carrying = Math.round(
|
||||||
colonyStats.foragerRatio * colonyStats.totalAnts,
|
colonyStats.foragerRatio * colonyStats.totalAnts,
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue