1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-21 17:07:40 +00:00

nih improvements

This commit is contained in:
Zeno Rogue
2019-10-02 19:22:43 +02:00
parent d6ab96f821
commit 46d127401e
8 changed files with 20 additions and 15 deletions

View File

@@ -1694,6 +1694,10 @@ EX void moreBigStuff(cell *c) {
if(c->master->emeraldval % 3 || c->master->zebraval % 3)
c->wall = waColumn;
}
else if(nih) {
if(c->master->emeraldval % 2)
c->wall = waColumn;
}
else if(geometry == gHoroTris || geometry == gHoroRec) {
if(c->c.spin(binary::updir()) != 0) c->wall = waColumn;
}