From 67f18080b45c21ac2e517f802dccc6871544cf36 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 2 Mar 2020 18:02:35 +0100 Subject: [PATCH] fixed generating inside an enclosure in Eclectic --- mapeffects.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/mapeffects.cpp b/mapeffects.cpp index 6e12b9e2..056f07ca 100644 --- a/mapeffects.cpp +++ b/mapeffects.cpp @@ -737,6 +737,12 @@ EX bool makeEmpty(cell *c) { if(c->item != itCompass) c->item = itNone; + if(c->land == laEclectic) { + c->wall = waNone; + forCellEx(c1, c) + c1->wall = waNone; + } + if(c->land == laWildWest) { forCellEx(c2, c) forCellEx(c3, c2)