one fix for all_unlocked

This commit is contained in:
Zeno Rogue 2021-04-15 17:33:52 +02:00
parent c7b24363bb
commit a1b0b6a643
1 changed files with 2 additions and 2 deletions

View File

@ -434,10 +434,10 @@ EX eLand getNewLand(eLand old) {
if(old == laGraveyard && generatingEquidistant)
return laHaunted;
if(old == laOcean && gold() >= R60 && hrand(100) < 75 && !rlyehComplete())
if(old == laOcean && gold() >= R60 && hrand(100) < 75 && !rlyehComplete() && !all_unlocked)
return laRlyeh;
if(old == laRlyeh && !rlyehComplete())
if(old == laRlyeh && !rlyehComplete() && !all_unlocked)
return laOcean;
eLand tab[16384];