1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-24 10:27:45 +00:00

Land switching in geom-exp (cheater enabled)

This commit is contained in:
Zeno Rogue
2018-04-15 13:04:02 +02:00
parent db1359e962
commit b5363ac93c
2 changed files with 5 additions and 2 deletions

View File

@@ -1366,6 +1366,9 @@ land_validity_t& land_validity(eLand l) {
// these don't appear in normal game, but do appear in special modes
if(l == laWildWest && !randomPatternsMode)
return out_of_theme;
if(l == laIce && !gp::on && hyperbolic_37)
return full_game;
return ok;
}