fixed generating inside an enclosure in Eclectic

This commit is contained in:
Zeno Rogue 2020-03-02 18:02:35 +01:00
parent 5ff63bbb43
commit 67f18080b4
1 changed files with 6 additions and 0 deletions

View File

@ -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)