From 4117608073db90fb891d1e4bd0ee35f5e0726a61 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sat, 22 Feb 2025 19:56:33 -0800 Subject: [PATCH] not all sealed walls are walls. okay --- src/mapgen.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/mapgen.ts b/src/mapgen.ts index cb1ebf6..abaed29 100644 --- a/src/mapgen.ts +++ b/src/mapgen.ts @@ -99,11 +99,8 @@ class Knife { for (let x = 0; x < size.w; x++) { const loc = new Point(x, y); out += (() => { - if (this.#sealedWalls.get(loc)) { - return "█"; - } if (this.#map.get(loc).architecture == Architecture.Wall) { - return "▓"; + return this.#sealedWalls.get(loc) ? "█" : "▓"; } let r = this.#regions.get(loc); if(typeof r === "number") {