diff options
Diffstat (limited to 'src/mapgen_fractal.h')
-rw-r--r-- | src/mapgen_fractal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapgen_fractal.h b/src/mapgen_fractal.h index afbdb0cb1..688e41c0a 100644 --- a/src/mapgen_fractal.h +++ b/src/mapgen_fractal.h @@ -26,8 +26,6 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "mapgen.h" -#define MGFRACTAL_LARGE_CAVE_DEPTH -33 - class BiomeManager; extern FlagDesc flagdesc_mapgen_fractal[]; @@ -36,6 +34,7 @@ struct MapgenFractalParams : public MapgenParams { u32 spflags = 0; float cave_width = 0.09f; + s16 large_cave_depth = -33; u16 fractal = 1; u16 iterations = 11; v3f scale = v3f(4096.0, 1024.0, 4096.0); @@ -74,6 +73,7 @@ private: u16 formula; bool julia; + s16 large_cave_depth; u16 fractal; u16 iterations; v3f scale; |