hv:: fixed troll nests

This commit is contained in:
Zeno Rogue 2024-03-19 19:58:45 +01:00
parent 86f5a040c9
commit 616607dc8e
1 changed files with 1 additions and 1 deletions

View File

@ -940,7 +940,7 @@ EX void giantLandSwitch(cell *c, int d, cell *from) {
bool okay = true;
forCellCM(c2, c) forCellCM(c3, c2) forCellCM(c4, c3) forCellCM(c5, c4) {
cell *cx = ls::any_chaos() ? c3 : c5;
if(cx->land != laTrollheim && cx->land != laNone)
if(cx->land != laTrollheim && cx->land != laNone && !ls::hv_structure())
okay = false;
if(cx->bardir != NODIR) okay = false;
}