in getNewLand, both laMirrorOld and laMirror are now options, so both are supported in custom land list

This commit is contained in:
Zeno Rogue 2024-03-14 19:31:19 +01:00
parent d0d354b53a
commit 26e61783b2
1 changed files with 2 additions and 1 deletions

View File

@ -552,7 +552,8 @@ EX eLand getNewLand(eLand old) {
// the intermediate lands
if(all_unlocked || gold() >= R30) {
tab[cnt++] = laCrossroads;
tab[cnt++] = (geometry || ls::hv_structure()) ? laMirrorOld : laMirror;
tab[cnt++] = laMirrorOld;
tab[cnt++] = laMirror;
tab[cnt++] = laOcean;
tab[cnt++] = laLivefjord;
if(all_unlocked || kills[moVizier]) tab[cnt++] = laEmerald;