Ceremonial PR: fix map gen #39

Merged
pyrex merged 14 commits from fix-mapgen into main 2025-02-23 05:41:20 +00:00
Showing only changes of commit b302538ade - Show all commits

View File

@ -100,7 +100,7 @@ class Knife {
const loc = new Point(x, y); const loc = new Point(x, y);
out += (() => { out += (() => {
if (this.#map.get(loc).architecture == Architecture.Wall) { if (this.#map.get(loc).architecture == Architecture.Wall) {
return this.#sealedWalls.get(loc) ? "█" : "▓"; return this.#sealedWalls.get(loc) ? "◘" : "█";
} }
let r = this.#regions.get(loc); let r = this.#regions.get(loc);
if(typeof r === "number") { if(typeof r === "number") {