From a2e09e5237c3bd5b9fb767732a8f8347004176bb Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Mon, 24 Feb 2025 21:13:50 -0800 Subject: [PATCH] disable the *other* mapgen debug spew --- src/mapgen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mapgen.ts b/src/mapgen.ts index be99cb8..8fc9019 100644 --- a/src/mapgen.ts +++ b/src/mapgen.ts @@ -757,7 +757,7 @@ function dedup(items: number[]): number[] { } function showDebug(grid: LoadedNewMap) { - if (true) { + if (DEBUG) { let out = ""; for (let y = 0; y < grid.size.h; y++) { for (let x = 0; x < grid.size.w; x++) {