mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 17:10:36 +00:00
sight range changing no longer considered cheating in arb
This commit is contained in:
parent
3bc2a8447a
commit
8aaeb4ea69
@ -4376,7 +4376,7 @@ EX bool allowIncreasedSight() {
|
|||||||
#endif
|
#endif
|
||||||
if(randomPatternsMode) return true;
|
if(randomPatternsMode) return true;
|
||||||
if(racing::on) 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;
|
if(WDIM == 3) return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -4388,7 +4388,7 @@ EX bool allowChangeRange() {
|
|||||||
#endif
|
#endif
|
||||||
if(racing::on) return true;
|
if(racing::on) return true;
|
||||||
if(sightrange_bonus >= 0) 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;
|
if(WDIM == 3) return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user