From 6f860595506b989c950926823767565875b337dd Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 4 Apr 2018 15:07:13 +0200 Subject: [PATCH] fixed warp in weirdhyperbolic (was disabled for some reason) --- landgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index b0cf52c4..705a2df9 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -1557,7 +1557,7 @@ void giantLandSwitch(cell *c, int d, cell *from) { if(d == 9 && randomPatternsMode) setland(c, RANDPAT ? laWarpCoast : laWarpSea); - if(d == 8 && !weirdhyperbolic) { + if(d == 8) { if(c->land == laWarpCoast) { if(hrand(1000) < 150 && celldist(c) >= 3 && !pseudohept(c)) c->wall = waSmallTree;