1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-27 22:39:53 +00:00

celldist in sol uses celldistance

This commit is contained in:
Zeno Rogue 2019-07-25 12:15:20 +02:00
parent 816320da94
commit 45ba083185

View File

@ -401,7 +401,7 @@ int celldist(cell *c) {
return torusconfig::cyldist(decodeId(c->master), 0); return torusconfig::cyldist(decodeId(c->master), 0);
if(masterless) if(masterless)
return eudist(decodeId(c->master)); 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 CAP_IRR
if(IRREGULAR) return irr::celldist(c, false); if(IRREGULAR) return irr::celldist(c, false);
#endif #endif