mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-22 23:17:04 +00:00
reduced the spawn rate of Gadflies in the Prairie, for better balance
This commit is contained in:
parent
8db0918162
commit
3ce89b4d23
@ -3598,7 +3598,7 @@ void setdist(cell *c, int d, cell *from) {
|
||||
else prairie::generateBeast(c);
|
||||
}
|
||||
else if(!prairie::nearriver(c) && c->LHU.fi.flowerdist > 7) {
|
||||
if(hrand(3000) < items[itGreenGrass] - (prairie::isriver(cwt.c) ? 14 : 0))
|
||||
if(hrand(9000) < items[itGreenGrass] - (prairie::isriver(cwt.c) ? 40 : 0))
|
||||
c->monst = moGadfly;
|
||||
else buildPrizeMirror(c, 1000);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user