Update stats overlay to show active ant count vs budget

This commit is contained in:
Jared Miller 2026-03-11 20:57:17 -04:00
parent 4c11924580
commit 9f3ecb57e8
Signed by: shmup
GPG key ID: 22B5C6D66A38B06C

View file

@ -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,
); );