1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-05 18:27:01 +00:00

fixed the single-land mode on fractals

This commit is contained in:
Zeno Rogue 2025-03-08 10:45:51 +01:00
parent 82a04f01f5
commit fdedc91f9a

View File

@ -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);