1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-18 11:58:07 +00:00

fixed the non-bitruncated order-4 tilings

This commit is contained in:
Zeno Rogue
2018-05-07 21:47:10 +02:00
parent de01907cd6
commit 9a76d44000
2 changed files with 6 additions and 6 deletions

View File

@@ -994,7 +994,8 @@ int geosupport_graveyard() {
if(tc) return tc;
if(S3 == 3 && S7 == 7) return 1;
if(S3 == 4 && !(S7&1)) return 2;
// nice chessboard pattern, but not the actual Graveyard
if(S3 == 4 && !(S7&1)) return 1;
return 0;
}