1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 17:10:36 +00:00

removed Crossroads from Chaos mode

This commit is contained in:
Zeno Rogue 2018-01-08 22:14:06 +01:00
parent e721dd7691
commit a4593cd2b0

View File

@ -1111,6 +1111,9 @@ int isLandValid(eLand l) {
if((l == laWhirlpool || l == laCamelot || l == laCaribbean || l == laTemple) && (bounded || chaosmode))
return 0;
if(chaosmode && isCrossroads(l))
return 0;
// Temple and Hive has a special Chaos Mode variant, but they are still essentially unbounded
if((l == laTemple || l == laHive) && bounded)
return 0;