mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
fixed accessing Emerald Mines from Irradiated even though it was not unlocked
This commit is contained in:
parent
42e5de4654
commit
321a54bc27
@ -416,7 +416,7 @@ EX eLand getNewLand(eLand old) {
|
||||
if(old == laOcean) tab[cnt++] = laCrossroads;
|
||||
if(items[itGold] >= U5 && items[itFernFlower] >= U5 && !kills[moVizier])
|
||||
tab[cnt++] = laEmerald;
|
||||
if(old == laVariant) LIKELY tab[cnt++] = laEmerald;
|
||||
if(old == laVariant && landUnlocked(laEmerald)) LIKELY tab[cnt++] = laEmerald;
|
||||
if(items[itWindstone] >= U5 && items[itDiamond] >= U5) {
|
||||
tab[cnt++] = laBlizzard;
|
||||
if(old == laIce || old == laCocytus || old == laWhirlwind)
|
||||
|
Loading…
Reference in New Issue
Block a user