1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-04 19:47:54 +00:00

fixed Crossroads III unlocking in casual

This commit is contained in:
Zeno Rogue
2024-08-21 19:18:02 +02:00
parent 6779e6a878
commit ea6b5aad10
2 changed files with 3 additions and 3 deletions

View File

@@ -672,10 +672,10 @@ EX eLand getNewLand(eLand old) {
tab[cnt++] = randomElementalLandWeighted();
}
if(landUnlocked(laHell)) {
if(landUnlocked(laCrossroads3)) {
if(!generatingEquidistant && old != laPrairie) tab[cnt++] = laCrossroads3;
}
if(items[itHell] >= U10) {
if(old == laCrossroads || old == laCrossroads2) tab[cnt++] = laOcean;
if(old == laOcean) tab[cnt++] = laCrossroads2;