mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
fixed a crash when running away from Clearing in single-land mode.
This commit is contained in:
parent
616607dc8e
commit
9430c26970
@ -2317,7 +2317,7 @@ EX void giantLandSwitch(cell *c, int d, cell *from) {
|
||||
int d = -celldistAlt(c);
|
||||
if(hrand_monster(2500) < items[itMutant2] + yendor::hardness() - 10 && !reptilecheat)
|
||||
c->monst = moRedFox;
|
||||
else if(hrand(100 + d) < d && !reptilecheat)
|
||||
else if(d > 0 && hrand(100 + d) < d && !reptilecheat)
|
||||
c->item = itMutant2;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user