mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-26 01:50:36 +00:00
ls:: fixed roses not appearing in horodisk
This commit is contained in:
parent
9326220310
commit
70b7e24e96
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user