1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-11 18:00:34 +00:00

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

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;
}