Snake Nest no longer appears when it should not

This commit is contained in:
Zeno Rogue 2018-05-01 19:35:41 +02:00
parent 96cd518710
commit 77ce8166f9
1 changed files with 1 additions and 2 deletions

View File

@ -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;