1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-17 18:54:48 +00:00

Euclidean emerald mine

This commit is contained in:
Zeno Rogue 2019-03-02 01:20:32 +01:00
parent a8e486e728
commit e0fa2c2e1c

View File

@ -415,6 +415,8 @@ void giantLandSwitch(cell *c, int d, cell *from) {
else if(fulltorus) {
c->wall = waCavefloor;
}
else if(euclid && DIM == 3)
c->wall = euclid3::get_emerald(c) ? waCavewall : waCavefloor;
else if(euclid) {
int x, y;
tie(x,y) = cell_to_pair(c);