From 676520a8ec4a08cbbdf9daf27e1dcd5069f21fca Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 3 Nov 2017 21:16:37 +0100 Subject: [PATCH] pure heptagonal Warped Coast and Kraken are now known to be weak --- landlock.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/landlock.cpp b/landlock.cpp index 77dcf78f..6fbdf393 100644 --- a/landlock.cpp +++ b/landlock.cpp @@ -1044,8 +1044,10 @@ int isLandValid(eLand l) { // Kraken does not really work in odd non-truncated geometries // (but we do have to allow it in Standard) - if(l == laKraken && nontruncated && (S7&1) && !geometry) + if(l == laKraken && nontruncated && (S7&1)) { + if(!geometry) return 1; return 0; + } // needs standard/Euclidean (needs vineyard pattern) if(l == laWineyard && !stdeuc) @@ -1080,8 +1082,10 @@ int isLandValid(eLand l) { return 0; // Warped Coast does not work on non-truncated S3s (except standard heptagonal where we have to keep it) - if(l == laWarpCoast && geometry && (S3==3) && nontruncated) + if(l == laWarpCoast && (S3==3) && nontruncated) { + if(!geometry) return 1; return 0; + } // laPower and laEmerald and laPalace -> [partial] in quotients and weirdhyperbolic if((l == laPower || l == laEmerald || l == laPalace) && !stdeuc && !(bigsphere && !elliptic))