not all sealed walls are walls. okay

This commit is contained in:
Kistaro Windrider 2025-02-22 19:56:33 -08:00
parent ba151a76fd
commit 4117608073
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -99,11 +99,8 @@ class Knife {
for (let x = 0; x < size.w; x++) {
const loc = new Point(x, y);
out += (() => {
if (this.#sealedWalls.get(loc)) {
return "█";
}
if (this.#map.get(loc).architecture == Architecture.Wall) {
return "▓";
return this.#sealedWalls.get(loc) ? "█" : "▓";
}
let r = this.#regions.get(loc);
if(typeof r === "number") {