1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-17 18:59:59 +00:00

hv:: fixed troll nests

This commit is contained in:
Zeno Rogue 2024-03-19 19:58:45 +01:00
parent 86f5a040c9
commit 616607dc8e

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;
}