From 26e61783b25ee5b5da8a03b8e75f41d20ee57d66 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 14 Mar 2024 19:31:19 +0100 Subject: [PATCH] in getNewLand, both laMirrorOld and laMirror are now options, so both are supported in custom land list --- landlock.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/landlock.cpp b/landlock.cpp index 1ba7b6c0..2f981d39 100644 --- a/landlock.cpp +++ b/landlock.cpp @@ -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;