mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-27 14:37:16 +00:00
Snake Nest no longer appears when it should not
This commit is contained in:
parent
96cd518710
commit
77ce8166f9
@ -982,7 +982,6 @@ int geosupport_threecolor() {
|
|||||||
if(S7 % 2) return 1;
|
if(S7 % 2) return 1;
|
||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
if(gp_threecolor() == 2) return 2;
|
|
||||||
if((S7 % 2 == 0) && (S3 == 3))
|
if((S7 % 2 == 0) && (S3 == 3))
|
||||||
return 2;
|
return 2;
|
||||||
return 0;
|
return 0;
|
||||||
@ -993,7 +992,7 @@ int geosupport_graveyard() {
|
|||||||
if(!nonbitrunc) return 2;
|
if(!nonbitrunc) return 2;
|
||||||
|
|
||||||
// always works in patterns supporting three-color
|
// always works in patterns supporting three-color
|
||||||
int tc = geosupport_threecolor();
|
int tc = max(geosupport_threecolor(), gp_threecolor());
|
||||||
if(tc) return tc;
|
if(tc) return tc;
|
||||||
|
|
||||||
if(S3 == 3 && S7 == 7) return 1;
|
if(S3 == 3 && S7 == 7) return 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user