ls:: fixed roses not appearing in horodisk

This commit is contained in:
Zeno Rogue 2023-09-22 12:13:22 +02:00
parent 9326220310
commit 70b7e24e96
1 changed files with 1 additions and 1 deletions

View File

@ -1992,7 +1992,7 @@ EX void giantLandSwitch(cell *c, int d, cell *from) {
for(int i=0; i<c->type; i++) {
cell *c2 = c->move(i);
if(c2 && c2->wall == waRose) nww++;
if(c2 && !ls::any_chaos()) for(int j=0; j<c2->type; j++) {
if(c2 && !ls::any_chaos() && !ls::hv_structure()) for(int j=0; j<c2->type; j++) {
cell *c3 = c2->move(j);
// note: c3->land is required for Android --
// not strictly equivalent since another land there might be not yet generated