mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
fixing the Terracotta balancing going the wrong way
This commit is contained in:
parent
abec95e63e
commit
08561433f6
@ -815,9 +815,9 @@ void giantLandSwitch(cell *c, int d, cell *from) {
|
||||
if(pseudohept(c) && hrand(100) < 40 && c->wall == waNone) {
|
||||
c->wall = waTerraWarrior;
|
||||
c->landparam = randterra ? 0 : 3 + hrand(3);
|
||||
if(hrand(100) > items[itTerra]-10)
|
||||
if(hrand(100) < items[itTerra]-10)
|
||||
c->landparam--;
|
||||
if(hrand(100) > items[itTerra]-10)
|
||||
if(hrand(100) < items[itTerra]-10)
|
||||
c->landparam--;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user