mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-02 12:19:18 +00:00
clearing:: reptilecheat now disables fruits and Foxes
This commit is contained in:
parent
57e10dfca8
commit
2e2eb4e212
@ -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;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user