1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-13 15:56:00 +00:00

editable statues

This commit is contained in:
?
2019-02-28 17:06:53 +01:00
committed by Zeno Rogue
parent 266b55eea2
commit 4ac186437b
7 changed files with 32 additions and 5 deletions

View File

@@ -712,6 +712,7 @@ bool highwall(cell *c) {
// if(wmspatial && isTree(c)) return false;
if(isGrave(c->wall)) return true;
if(c->wall == waMirrorWall) return false;
if(c->wall == waEditStatue) return false;
return winf[c->wall].glyph == '#' || c->wall == waClosedGate;
}