mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +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;
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user