1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-23 13:43:19 +00:00

fixed accessing Emerald Mines from Irradiated even though it was not unlocked

This commit is contained in:
Zeno Rogue 2019-09-27 16:47:31 +02:00
parent 42e5de4654
commit 321a54bc27

View File

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