From 3c8d4d91b53ab91bccc6bcacad305771d24703fb Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 18 Dec 2017 21:17:15 +0100 Subject: [PATCH] better EuclidA4 warped coast --- bigstuff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigstuff.cpp b/bigstuff.cpp index da95c1f7..9719f901 100644 --- a/bigstuff.cpp +++ b/bigstuff.cpp @@ -865,7 +865,7 @@ void setLandEuclid(cell *c) { eucoord x, y; decodeMaster(c->master, x, y); - int zz = 2*short(x)+short(y) + 10; + int zz = a4 ? short(x) : 2*short(x)+short(y) + 10; zz %= 30; if(zz<0) zz += 30; if(zz >= 15) setland(c, laWarpSea);