From 77ce8166f9eea47338c153543d8a197c83155a3c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 1 May 2018 19:35:41 +0200 Subject: [PATCH] Snake Nest no longer appears when it should not --- pattern2.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pattern2.cpp b/pattern2.cpp index 2af89392..592572c7 100644 --- a/pattern2.cpp +++ b/pattern2.cpp @@ -982,7 +982,6 @@ int geosupport_threecolor() { if(S7 % 2) return 1; return 2; } - if(gp_threecolor() == 2) return 2; if((S7 % 2 == 0) && (S3 == 3)) return 2; return 0; @@ -993,7 +992,7 @@ int geosupport_graveyard() { if(!nonbitrunc) return 2; // always works in patterns supporting three-color - int tc = geosupport_threecolor(); + int tc = max(geosupport_threecolor(), gp_threecolor()); if(tc) return tc; if(S3 == 3 && S7 == 7) return 1;