1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-25 22:53:19 +00:00

3d:: less ivies in Euclidean

This commit is contained in:
? 2019-02-27 01:16:26 +01:00 committed by Zeno Rogue
parent aac03e72fe
commit 2a4d4cbda3

View File

@ -2004,6 +2004,7 @@ void giantLandSwitch(cell *c, int d, cell *from) {
else if(hrand(80000) < 5 + items[itRuby] + yendor::hardness())
c->monst = moEagle;
else if(pseudohept(c) && c != currentmap->gamestart() && hrand(4000) < 300 + items[itRuby] && !c->monst) {
if(DIM == 3 && euclid && hrand(100) < 10) break;
int hardchance = items[itRuby] + yendor::hardness();
if(hardchance > 25) hardchance = 25;
bool hardivy = hrand(100) < hardchance;