From 6447333d03c89db3384689a8ee1ffad5b9861bd6 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 12 Mar 2020 10:33:03 +0100 Subject: [PATCH] Frog Park is no longer generated adjacent to Land of Motion --- landlock.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/landlock.cpp b/landlock.cpp index 725790ed..5e204c20 100644 --- a/landlock.cpp +++ b/landlock.cpp @@ -187,6 +187,7 @@ EX bool incompatible1(eLand l1, eLand l2) { if(l1 == laWarpSea && l2 == laKraken) return true; if(l1 == laPrairie && l2 == laCrossroads3) return true; if(l1 == laWet && l2 == laDesert) return true; + if(l1 == laFrog && l2 == laMotion) return true; if(isElemental(l1) && isElemental(l2)) return true; return false; }