From b302538adef9d5572c146d2d3ebe2548a7a4c4d6 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sat, 22 Feb 2025 20:05:34 -0800 Subject: [PATCH] stop using the "dark shade" character for standard walls now uses inverse bullet for sealed walls and full block otherwise --- src/mapgen.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mapgen.ts b/src/mapgen.ts index 9ac1dfb..dc5b986 100644 --- a/src/mapgen.ts +++ b/src/mapgen.ts @@ -100,7 +100,7 @@ class Knife { const loc = new Point(x, y); out += (() => { if (this.#map.get(loc).architecture == Architecture.Wall) { - return this.#sealedWalls.get(loc) ? "█" : "▓"; + return this.#sealedWalls.get(loc) ? "◘" : "█"; } let r = this.#regions.get(loc); if(typeof r === "number") {