summaryrefslogtreecommitdiff
path: root/src/mapgen_flat.h
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2017-06-17 19:11:28 +0200
committerGitHub <noreply@github.com>2017-06-17 19:11:28 +0200
commit8f7785771b9e02b1a1daf7a252550d78ea93053d (patch)
tree7a4e4b524dbc63fed3dac99a3844b634cc621d0d /src/mapgen_flat.h
parent76be103a91d6987527af19e87d93007be8ba8a67 (diff)
downloadminetest-8f7785771b9e02b1a1daf7a252550d78ea93053d.tar.gz
minetest-8f7785771b9e02b1a1daf7a252550d78ea93053d.tar.bz2
minetest-8f7785771b9e02b1a1daf7a252550d78ea93053d.zip
Cpp11 initializers 2 (#5999)
* C++11 patchset 10: continue cleanup on constructors * Drop obsolete bool MainMenuData::enable_public (setting is called with cURL in server loop) * More classes cleanup * More classes cleanup + change NULL tests to boolean tests
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;