From 96a96541c7b65c8bbd128ed0889dbe1b0a66cc58 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 17 Apr 2026 20:52:44 +0200 Subject: [PATCH] fixed Huntng Ground in quickly expanding geometries --- bigstuff.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bigstuff.cpp b/bigstuff.cpp index f058e50d..b33ddcb6 100644 --- a/bigstuff.cpp +++ b/bigstuff.cpp @@ -2005,7 +2005,10 @@ EX bool openplains(cell *c) { } int dlimit = getDistLimit(); if(arcm::in()) dlimit--; - if(dlimit < 7) { + if(getDistLimit() < 4) { + return true; + } + else if(dlimit < 7) { celllister cl(c, dlimit, 1000000, NULL); int bad = 0; for(cell *c: cl.lst) {