summaryrefslogtreecommitdiff
path: root/src/mapgen_flat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapgen_flat.h')
-rw-r--r--src/mapgen_flat.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mapgen_flat.h b/src/mapgen_flat.h
index 18b84de76..ab3531226 100644
--- a/src/mapgen_flat.h
+++ b/src/mapgen_flat.h
@@ -33,14 +33,14 @@ extern FlagDesc flagdesc_mapgen_flat[];
struct MapgenFlatParams : public MapgenParams
{
- u32 spflags;
- s16 ground_level;
- s16 large_cave_depth;
- float cave_width;
- float lake_threshold;
- float lake_steepness;
- float hill_threshold;
- float hill_steepness;
+ u32 spflags = 0;
+ s16 ground_level = 8;
+ s16 large_cave_depth = -33;
+ float cave_width = 0.09f;
+ float lake_threshold = -0.45f;
+ float lake_steepness = 48.0f;
+ float hill_threshold = 0.45f;
+ float hill_steepness = 64.0f;
NoiseParams np_terrain;
NoiseParams np_filler_depth;
NoiseParams np_cave1;