mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-24 17:10:36 +00:00
land distance shows the correct values in equidistant-based lands in Euclidean
This commit is contained in:
parent
e319d953ea
commit
86050df3da
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user