From ced8e540d10eeaa78a537e99e8240d57588f94cf Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 2 Mar 2020 18:03:09 +0100 Subject: [PATCH] Wetland and Desert no longer can start together --- landlock.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/landlock.cpp b/landlock.cpp index f4de7efe..4c048a49 100644 --- a/landlock.cpp +++ b/landlock.cpp @@ -186,6 +186,7 @@ EX bool incompatible1(eLand l1, eLand l2) { if(l1 == laDeadCaves && l2 == laCaves) return true; if(l1 == laWarpSea && l2 == laKraken) return true; if(l1 == laPrairie && l2 == laCrossroads3) return true; + if(l1 == laWet && l2 == laDesert) return true; if(isElemental(l1) && isElemental(l2)) return true; return false; }