mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-11-06 00:33:01 +00:00
fixed generating inside an enclosure in Eclectic
This commit is contained in:
@@ -737,6 +737,12 @@ EX bool makeEmpty(cell *c) {
|
|||||||
if(c->item != itCompass)
|
if(c->item != itCompass)
|
||||||
c->item = itNone;
|
c->item = itNone;
|
||||||
|
|
||||||
|
if(c->land == laEclectic) {
|
||||||
|
c->wall = waNone;
|
||||||
|
forCellEx(c1, c)
|
||||||
|
c1->wall = waNone;
|
||||||
|
}
|
||||||
|
|
||||||
if(c->land == laWildWest) {
|
if(c->land == laWildWest) {
|
||||||
forCellEx(c2, c)
|
forCellEx(c2, c)
|
||||||
forCellEx(c3, c2)
|
forCellEx(c3, c2)
|
||||||
|
|||||||
Reference in New Issue
Block a user