From dc7e60952baa4a65356eff5082e7d24bf0f69fb6 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 2 Sep 2018 15:09:46 +0200 Subject: [PATCH] disabled the roundabout bugfix in landgen in Archimedean --- landgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index a486d512..271ae915 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -2375,7 +2375,7 @@ void setdist(cell *c, int d, cell *from) { // this fixes the following problem: // http://steamcommunity.com/app/342610/discussions/0/1470840994970724215/ - if(!generatingEquidistant && from && d >= 7 && c->land && !binarytiling) { + if(!generatingEquidistant && from && d >= 7 && c->land && !binarytiling && !archimedean) { int cdi = celldist(c); if(celldist(from) > cdi) { forCellCM(c2, c) if(celldist(c2) < cdi) {