disable Windy chasms if reptilecheat is on

This commit is contained in:
Zeno Rogue 2018-03-24 15:22:34 +01:00
parent 70def6c15e
commit 77b6d9eedb
1 changed files with 1 additions and 1 deletions

View File

@ -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))
{}