clearing:: reptilecheat now disables fruits and Foxes

This commit is contained in:
Zeno Rogue 2020-01-02 16:56:13 +01:00
parent 57e10dfca8
commit 2e2eb4e212
1 changed files with 2 additions and 2 deletions

View File

@ -2193,9 +2193,9 @@ EX void giantLandSwitch(cell *c, int d, cell *from) {
clearing::generate(c);
if(pseudohept(c)) {
int d = -celldistAlt(c);
if(hrand_monster(2500) < items[itMutant2] + yendor::hardness() - 10)
if(hrand_monster(2500) < items[itMutant2] + yendor::hardness() - 10 && !reptilecheat)
c->monst = moRedFox;
else if(hrand(100 + d) < d)
else if(hrand(100 + d) < d && !reptilecheat)
c->item = itMutant2;
}
}