Ceremonial PR: fix map gen #39
@ -99,11 +99,8 @@ class Knife {
|
|||||||
for (let x = 0; x < size.w; x++) {
|
for (let x = 0; x < size.w; x++) {
|
||||||
const loc = new Point(x, y);
|
const loc = new Point(x, y);
|
||||||
out += (() => {
|
out += (() => {
|
||||||
if (this.#sealedWalls.get(loc)) {
|
|
||||||
return "█";
|
|
||||||
}
|
|
||||||
if (this.#map.get(loc).architecture == Architecture.Wall) {
|
if (this.#map.get(loc).architecture == Architecture.Wall) {
|
||||||
return "▓";
|
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") {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user