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 ba151a76fd - Show all commits

View File

@ -103,7 +103,7 @@ class Knife {
return "█"; return "█";
} }
if (this.#map.get(loc).architecture == Architecture.Wall) { if (this.#map.get(loc).architecture == Architecture.Wall) {
return "#"; return "";
} }
let r = this.#regions.get(loc); let r = this.#regions.get(loc);
if(typeof r === "number") { if(typeof r === "number") {