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") {