From e0fa2c2e1c83166a1a15c37134c17ffc651ac532 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 2 Mar 2019 01:20:32 +0100 Subject: [PATCH] Euclidean emerald mine --- landgen.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/landgen.cpp b/landgen.cpp index ba1389bc..10a22c57 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -415,6 +415,8 @@ void giantLandSwitch(cell *c, int d, cell *from) { else if(fulltorus) { c->wall = waCavefloor; } + else if(euclid && DIM == 3) + c->wall = euclid3::get_emerald(c) ? waCavewall : waCavefloor; else if(euclid) { int x, y; tie(x,y) = cell_to_pair(c);