1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-30 17:32:10 +00:00

Pattern-related functions moved from cells and mapeditor to pattern2s; three-color patterns

This commit is contained in:
Zeno Rogue
2017-12-05 16:19:22 +01:00
parent 22535c919c
commit 9b2f9ecc14
9 changed files with 790 additions and 702 deletions
+2 -2
View File
@@ -1110,8 +1110,8 @@ int isLandValid(eLand l) {
return 0;
// Graveyard pattern does not work on non-truncated weird geometries
if(l == laGraveyard && weirdhyperbolic && nontruncated)
return 0;
if(l == laGraveyard)
return geosupport_graveyard();
// Warped Coast does not work on non-truncated S3s (except standard heptagonal where we have to keep it)
if(l == laWarpCoast && (S3==3) && nontruncated) {