1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-25 22:53:19 +00:00

disabled cyclic lands in the list in Euclidean/Sol

This commit is contained in:
Zeno Rogue 2019-07-28 11:43:35 +02:00
parent 502e307667
commit 5367e15b43

View File

@ -573,6 +573,7 @@ eLand getLandForList(cell *c) {
bool isLandIngame(eLand l) {
if(isElemental(l)) l = laElementalWall;
if(dual::state == 2 && !dual::check_side(l)) return false;
if((euclid || sol) && isCyclic(l) && l != specialland) return false;
return land_validity(l).flags & lv::appears_in_full;
}