From 616607dc8e88be498f59775075c90b0acdbefd50 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 19 Mar 2024 19:58:45 +0100 Subject: [PATCH] hv:: fixed troll nests --- landgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index bfc4a2d5..22f8dfc2 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -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; }