mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
some emerald implementation in sol
This commit is contained in:
parent
2f0448dbc3
commit
b47525b623
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user