mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-27 14:37:16 +00:00
eclectic: disable charged and sandstone walls next to other lands
This commit is contained in:
parent
10f63743ab
commit
d84d8610b2
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user