1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-13 04:13:03 +00:00

racing:: increase range allowed

This commit is contained in:
Zeno Rogue
2019-01-11 15:01:36 +01:00
parent 15cd70c6a7
commit 325877a9ee
2 changed files with 11 additions and 1 deletions

View File

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