From 98969e4b6b2726e55501f417d3a234f266fb9fc2 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 7 Nov 2021 10:34:53 +0100 Subject: [PATCH] fixed openplains in nowalls mode --- bigstuff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigstuff.cpp b/bigstuff.cpp index cbfe2d53..db78c979 100644 --- a/bigstuff.cpp +++ b/bigstuff.cpp @@ -1714,7 +1714,7 @@ EX void buildBigStuff(cell *c, cell *from) { } EX bool openplains(cell *c) { - if(ls::any_chaos()) { + if(ls::any_chaos() || ls::no_walls()) { forCellEx(c2, c) if(c2->land != laHunting) return false; return true; }