mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-01-23 15:36:59 +00:00
one fix for all_unlocked
This commit is contained in:
parent
c7b24363bb
commit
a1b0b6a643
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user