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.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mapgen_flat.h b/src/mapgen_flat.h
index 8ddfe708f..8aed09be5 100644
--- a/src/mapgen_flat.h
+++ b/src/mapgen_flat.h
@@ -34,14 +34,13 @@ extern FlagDesc flagdesc_mapgen_flat[];
struct MapgenFlatParams : public MapgenSpecificParams {
u32 spflags;
-
s16 ground_level;
s16 large_cave_depth;
+ float cave_width;
float lake_threshold;
float lake_steepness;
float hill_threshold;
float hill_steepness;
-
NoiseParams np_terrain;
NoiseParams np_filler_depth;
NoiseParams np_cave1;
@@ -61,20 +60,20 @@ public:
int ystride;
int zstride_1d;
- u32 spflags;
v3s16 node_min;
v3s16 node_max;
v3s16 full_node_min;
v3s16 full_node_max;
+ u32 spflags;
s16 ground_level;
s16 large_cave_depth;
+ float cave_width;
float lake_threshold;
float lake_steepness;
float hill_threshold;
float hill_steepness;
-
Noise *noise_terrain;
Noise *noise_filler_depth;
Noise *noise_cave1;