stop using the "dark shade" character for standard walls

now uses inverse bullet for sealed walls and full block otherwise
This commit is contained in:
Kistaro Windrider 2025-02-22 20:05:34 -08:00
parent 764d1e4892
commit b302538ade
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

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