disable the *other* mapgen debug spew

This commit is contained in:
Kistaro Windrider 2025-02-24 21:13:50 -08:00
parent 8260bf8b21
commit a2e09e5237
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -757,7 +757,7 @@ function dedup(items: number[]): number[] {
} }
function showDebug(grid: LoadedNewMap) { function showDebug(grid: LoadedNewMap) {
if (true) { if (DEBUG) {
let out = ""; let out = "";
for (let y = 0; y < grid.size.h; y++) { for (let y = 0; y < grid.size.h; y++) {
for (let x = 0; x < grid.size.w; x++) { for (let x = 0; x < grid.size.w; x++) {