From 2d962c324d504dcd520a2ed4dd7d34d7f6b04ff2 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 12 Jul 2021 10:02:26 +0200 Subject: [PATCH] increased the limit in bounded_celldistance to 14400 --- cell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cell.cpp b/cell.cpp index 3698f342..4032a4ca 100644 --- a/cell.cpp +++ b/cell.cpp @@ -1084,7 +1084,7 @@ EX cell *random_in_distance(cell *c, int d) { } EX int bounded_celldistance(cell *c1, cell *c2) { - int limit = 6000; + int limit = 14400; #if CAP_SOLV if(geometry == gArnoldCat) { c2 = asonov::get_at(asonov::get_coord(c2->master) - asonov::get_coord(c1->master))->c7;