1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-22 17:37:39 +00:00

fixed curr_dist and horocycles in Canvas for Euclidedan

This commit is contained in:
Zeno Rogue
2018-09-28 12:27:44 +02:00
parent e10f6564a6
commit ce390de0d2
4 changed files with 4 additions and 6 deletions

View File

@@ -44,7 +44,7 @@ int celldistAltRelative(cell *c) {
}
int euclidAlt(short x, short y) {
if(specialland == laTemple || specialland == laClearing) {
if(among(specialland, laTemple, laClearing, laCanvas)) {
if(euclid6)
return max(int(x), x+y);
else if(PURE)
@@ -1169,7 +1169,7 @@ void moreBigStuff(cell *c) {
if(d <= PRADIUS1) generateAlts(c->master);
}
if(c->land == laCanvas && c->master->alt)
if(c->land == laCanvas && !eubinary && c->master->alt)
generateAlts(c->master);
if(c->land == laStorms)