some emerald implementation in sol

This commit is contained in:
Zeno Rogue 2019-07-31 17:33:36 +02:00
parent 2f0448dbc3
commit b47525b623
1 changed files with 2 additions and 0 deletions

View File

@ -439,6 +439,8 @@ void giantLandSwitch(cell *c, int d, cell *from) {
else if(fulltorus) {
c->wall = waCavefloor;
}
else if(sol)
c->wall = (c->master->zebraval % 7 >= 5 || c->master->emeraldval % 7 >= 5) ? waCavewall : waCavefloor;
else if(WDIM == 3 && hyperbolic && !binarytiling)
c->wall = (c->master->zebraval & 1) ? waCavewall : waCavefloor;
#if MAXMDIM >= 4