mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-13 02:40:33 +00:00
fixed wrong treasure used for Frog balance
This commit is contained in:
parent
d84d8610b2
commit
a33c4b8e50
@ -2657,7 +2657,7 @@ EX void giantLandSwitch(cell *c, int d, cell *from) {
|
|||||||
|
|
||||||
if(d == 7) {
|
if(d == 7) {
|
||||||
if(c->wall == waNone) {
|
if(c->wall == waNone) {
|
||||||
if(hrand_monster(1000) < 10 + 10 * (items[itWet] + yendor::hardness()))
|
if(hrand_monster(2000) < 20 + (items[itFrog] + yendor::hardness()))
|
||||||
c->monst = pick(moFrog, moPhaser, moVaulter);
|
c->monst = pick(moFrog, moPhaser, moVaulter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user