eclectic: disable charged and sandstone walls next to other lands

This commit is contained in:
Zeno Rogue 2020-03-02 17:51:45 +01:00
parent 10f63743ab
commit d84d8610b2
1 changed files with 5 additions and 0 deletions

View File

@ -2533,6 +2533,11 @@ EX void giantLandSwitch(cell *c, int d, cell *from) {
if(c->wall == waRose) c->wall = waNone;
if(among(c->wall, waCharged, waSandstone)) {
forCellEx(c1, c) if(c1->land != laEclectic)
c->wall = waNone;
}
/*
experiment: replace Roses with Ivy
for(cell *cx: ce)