mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-03-30 07:17:03 +00:00
disable Windy chasms if reptilecheat is on
This commit is contained in:
parent
70def6c15e
commit
77b6d9eedb
@ -1047,7 +1047,7 @@ void giantLandSwitch(cell *c, int d, cell *from) {
|
||||
c->wall = waChasm;
|
||||
}
|
||||
else if(!euclid && zebra3(c) == 0) c->wall = waFan;
|
||||
else if(pseudohept(c) && hrand(2000) < 150)
|
||||
else if(pseudohept(c) && hrand(2000) < 150 && !reptilecheat)
|
||||
c->wall = waChasm;
|
||||
else if(c->type == 6 && buildPrizeMirror(c, 1000))
|
||||
{}
|
||||
|
Loading…
x
Reference in New Issue
Block a user