From 774a6fabcda47d84e94d593dc83ce3bdcd507b2b Mon Sep 17 00:00:00 2001 From: evan Date: Sat, 3 May 2025 07:06:28 -0700 Subject: [PATCH] print team leaderboard to console --- src/core/execution/WinCheckExecution.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/execution/WinCheckExecution.ts b/src/core/execution/WinCheckExecution.ts index e40e3f0b7..e28e7c4f8 100644 --- a/src/core/execution/WinCheckExecution.ts +++ b/src/core/execution/WinCheckExecution.ts @@ -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();