From 849925962c069de6543f37fce89688f0dd002a66 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 27 Oct 2017 20:09:33 +0200 Subject: [PATCH] fixed getDistLimit in octagonal non-pure --- game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.cpp b/game.cpp index 1f34d0ca..d3bfaf90 100644 --- a/game.cpp +++ b/game.cpp @@ -2570,7 +2570,7 @@ void buildRosemap() { } -int getDistLimit() { return purehepta?(AT8?4:5):7; } +int getDistLimit() { return purehepta?(AT8?4:5):(AT8?6:7); } bool nogoSlow(cell *to, cell *from) { if(cellEdgeUnstable(to) && gravityLevel(to) >= gravityLevel(from)) return true;