From b47525b62358c78eb534a903d0e02003d0f68bbb Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 31 Jul 2019 17:33:36 +0200 Subject: [PATCH] some emerald implementation in sol --- landgen.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/landgen.cpp b/landgen.cpp index affb1ce4..27505608 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -439,6 +439,8 @@ void giantLandSwitch(cell *c, int d, cell *from) { else if(fulltorus) { c->wall = waCavefloor; } + else if(sol) + c->wall = (c->master->zebraval % 7 >= 5 || c->master->emeraldval % 7 >= 5) ? waCavewall : waCavefloor; else if(WDIM == 3 && hyperbolic && !binarytiling) c->wall = (c->master->zebraval & 1) ? waCavewall : waCavefloor; #if MAXMDIM >= 4