1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-22 17:37:39 +00:00

fixed new geometry handling for Archimedean

This commit is contained in:
Zeno Rogue
2019-08-22 12:14:39 +02:00
parent 2f954d0538
commit a03eb0d913
23 changed files with 57 additions and 55 deletions

View File

@@ -733,7 +733,7 @@ EX land_validity_t& land_validity(eLand l) {
}
if(l == laBrownian) {
if(quotient || !hyperbolic || geometry == gCrystal) return dont_work;
if(quotient || !hyperbolic || cryst) return dont_work;
}
if(binarytiling) {
@@ -753,7 +753,7 @@ EX land_validity_t& land_validity(eLand l) {
#endif
#if CAP_CRYSTAL
if(geometry == gCrystal) {
if(cryst) {
if(l == laCamelot) return interesting;
if(isCrossroads(l)) return full_game;
}