]> git.lizzy.rs Git - minetest.git/blobdiff - src/mapgen_flat.h
Fix arm inertia limit case
[minetest.git] / src / mapgen_flat.h
index 7a669632933f146d2fc9a82829bb8ea3b574f01d..7c2929d39ffa6c24704cdfb8e38ac4eea09fe58f 100644 (file)
@@ -1,7 +1,7 @@
 /*
 Minetest
-Copyright (C) 2010-2015 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
-Copyright (C) 2010-2015 paramat, Matt Gregory
+Copyright (C) 2015-2017 paramat
+Copyright (C) 2015-2016 kwolekr, Ryan Kwolek <kwolekr@minetest.net>
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
@@ -33,14 +33,15 @@ 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;
+       s16 lava_depth = -256;
+       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;