land distance shows the correct values in equidistant-based lands in Euclidean

This commit is contained in:
Zeno Rogue 2019-12-27 11:31:10 +01:00
parent e319d953ea
commit 86050df3da
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ EX int curr_dist(cell *c) {
case dfWorld:
if(!mod_allowed() && !among(c->land, laOcean, laIvoryTower, laEndorian, laDungeon, laTemple, laWhirlpool, laCanvas))
return 0;
if(eubinary || c->master->alt) return celldistAlt(c);
if(isCyclic(c->land) && (eubinary || c->master->alt)) return celldistAlt(c);
return inmirror(c) ? (c->landparam & 255) : c->landparam;
}
return 0;