1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-26 07:03:19 +00:00

reduced the spawn rate of Gadflies in the Prairie, for better balance

This commit is contained in:
Zeno Rogue 2017-09-01 22:16:00 +02:00
parent 8db0918162
commit 3ce89b4d23

View File

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