From 6817ed42add6237a42e80919c39d5f4f7c6adeed Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 2 Apr 2020 12:56:26 +0200 Subject: [PATCH] allowIncreasedSight now returns true after gameover --- graph.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/graph.cpp b/graph.cpp index 09eb170b..d1e5f4cc 100644 --- a/graph.cpp +++ b/graph.cpp @@ -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; }