From 8aaeb4ea6996f7c637a45f556b3581833953b00b Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 22 Mar 2020 12:02:58 +0100 Subject: [PATCH] sight range changing no longer considered cheating in arb --- graph.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph.cpp b/graph.cpp index e8c2eff0..836ec3c6 100644 --- a/graph.cpp +++ b/graph.cpp @@ -4376,7 +4376,7 @@ EX bool allowIncreasedSight() { #endif if(randomPatternsMode) return true; if(racing::on) return true; - if(quotient || !hyperbolic || arcm::in()) return true; + if(quotient || !hyperbolic || arcm::in() || arb::in()) return true; if(WDIM == 3) return true; return false; } @@ -4388,7 +4388,7 @@ EX bool allowChangeRange() { #endif if(racing::on) return true; if(sightrange_bonus >= 0) return true; - if(arcm::in()) return true; + if(arcm::in() || arb::in()) return true; if(WDIM == 3) return true; return false; }