From 45ba083185799e81164cefcbf6ddf9c3908a2909 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 25 Jul 2019 12:15:20 +0200 Subject: [PATCH] celldist in sol uses celldistance --- cell.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cell.cpp b/cell.cpp index 05c98572..67ef2076 100644 --- a/cell.cpp +++ b/cell.cpp @@ -401,7 +401,7 @@ int celldist(cell *c) { return torusconfig::cyldist(decodeId(c->master), 0); if(masterless) return eudist(decodeId(c->master)); - if(sphere || binarytiling || WDIM == 3 || geometry == gCrystal) return celldistance(c, currentmap->gamestart()); + if(sphere || binarytiling || WDIM == 3 || geometry == gCrystal || sol) return celldistance(c, currentmap->gamestart()); #if CAP_IRR if(IRREGULAR) return irr::celldist(c, false); #endif