1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-02-01 23:40:15 +00:00

enabled sightrange increase in Archimedean, also translation of sightrange and better note about additional options

This commit is contained in:
Zeno Rogue
2018-09-21 19:50:18 +02:00
parent cebfcf5196
commit 12a2a78d8a
2 changed files with 6 additions and 4 deletions

View File

@@ -5175,7 +5175,7 @@ bool allowIncreasedSight() {
if(tour::on) return true;
#endif
if(randomPatternsMode) return true;
if(quotient || !hyperbolic) return true;
if(quotient || !hyperbolic || archimedean) return true;
return false;
}
@@ -5185,6 +5185,7 @@ bool allowChangeRange() {
if(tour::on) return true;
#endif
if(sightrange_bonus >= 0) return true;
if(archimedean) return true;
return false;
}