From 19e7b8aa292b4289fa1af978aabf0e745698d3a0 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 1 May 2021 10:49:17 +0200 Subject: [PATCH] fixed nicewalls in hybri --- bigstuff.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bigstuff.cpp b/bigstuff.cpp index 2e3349d6..c1f8ec68 100644 --- a/bigstuff.cpp +++ b/bigstuff.cpp @@ -1488,6 +1488,8 @@ EX bool walls_not_implemented() { } EX bool nice_walls_available() { + if(hybri) return PIU(nice_walls_available()); + if(fake::in()) return FPIU(nice_walls_available()); return (geometry == gNormal && (PURE || BITRUNCATED)) || (geometry == gEuclid && !(INVERSE | IRREGULAR)); }