From fdedc91f9aa0cde3933707d5fd527676558bf25b Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 8 Mar 2025 10:45:51 +0100 Subject: [PATCH] fixed the single-land mode on fractals --- landgen.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/landgen.cpp b/landgen.cpp index f0a38fd1..659c4063 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -2990,6 +2990,7 @@ EX void set_land_for_geometry(cell *c) { #endif else if(mhybrid) setLandHybrid(c); else if(sphere || (euclid && closed_or_bounded)) setLandSphere(c); + else if((cgflags & qFRACTAL)) setland(c, specialland); else if(euclid) setLandEuclid(c); else if(quotient) { setland(c, specialland); setLandQuotient(c); } else if(sol) setLandSol(c);