print team leaderboard to console

This commit is contained in:
evan
2025-05-03 07:06:28 -07:00
parent 67dd522275
commit 774a6fabcd
+3
View File
@@ -68,6 +68,9 @@ export class WinCheckExecution implements Execution {
if (sorted.length == 0) {
return;
}
console.log(
`TEAM LEADERBOARD:\n${sorted.map((t) => `${t[0]}: ${t[1]}`).join("\n")}`,
);
const max = sorted[0];
const numTilesWithoutFallout =
this.mg.numLandTiles() - this.mg.numTilesWithFallout();