allowIncreasedSight now returns true after gameover

This commit is contained in:
Zeno Rogue 2020-04-02 12:56:26 +02:00
parent a8b4ad3a85
commit 6817ed42ad
1 changed files with 1 additions and 0 deletions

View File

@ -4378,6 +4378,7 @@ EX bool allowIncreasedSight() {
if(racing::on) return true;
if(quotient || !hyperbolic || arcm::in() || arb::in()) return true;
if(WDIM == 3) return true;
if(!canmove) return true;
return false;
}