diff options
author | Paramat <paramat@users.noreply.github.com> | 2018-08-16 19:10:56 +0100 |
---|---|---|
committer | SmallJoker <SmallJoker@users.noreply.github.com> | 2018-08-16 20:10:56 +0200 |
commit | 4dff0021b8c0ad19db97a6160a338fcac09f7c4c (patch) | |
tree | c9577825ccec0d2d086a53909a8735aee3618ea1 /src/mapgen | |
parent | 297beea5bf95c8ea0b6fe08aed287b94487d24ea (diff) | |
download | minetest-4dff0021b8c0ad19db97a6160a338fcac09f7c4c.tar.gz minetest-4dff0021b8c0ad19db97a6160a338fcac09f7c4c.tar.bz2 minetest-4dff0021b8c0ad19db97a6160a338fcac09f7c4c.zip |
Mgv5: Change tunnel parameters to those of other mapgens (#7641)
Make tunnels wider and use the noise parameters of most other mapgens.
All other underground features are already identical to all other
non-mgv6 mapgens, this final change modernises and improves the tunnels.
Diffstat (limited to 'src/mapgen')
-rw-r--r-- | src/mapgen/mapgen_v5.cpp | 4 | ||||
-rw-r--r-- | src/mapgen/mapgen_v5.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mapgen/mapgen_v5.cpp b/src/mapgen/mapgen_v5.cpp index 3be704cca..3e8f42acf 100644 --- a/src/mapgen/mapgen_v5.cpp +++ b/src/mapgen/mapgen_v5.cpp @@ -87,8 +87,8 @@ MapgenV5Params::MapgenV5Params(): np_factor (0, 1, v3f(250, 250, 250), 920381, 3, 0.45, 2.0), np_height (0, 10, v3f(250, 250, 250), 84174, 4, 0.5, 2.0), np_ground (0, 40, v3f(80, 80, 80), 983240, 4, 0.55, 2.0, NOISE_FLAG_EASED), - np_cave1 (0, 12, v3f(50, 50, 50), 52534, 4, 0.5, 2.0), - np_cave2 (0, 12, v3f(50, 50, 50), 10325, 4, 0.5, 2.0), + np_cave1 (0, 12, v3f(61, 61, 61), 52534, 3, 0.5, 2.0), + np_cave2 (0, 12, v3f(67, 67, 67), 10325, 3, 0.5, 2.0), np_cavern (0, 1, v3f(384, 128, 384), 723, 5, 0.63, 2.0) { } diff --git a/src/mapgen/mapgen_v5.h b/src/mapgen/mapgen_v5.h index f3b2f5d44..a1b56a070 100644 --- a/src/mapgen/mapgen_v5.h +++ b/src/mapgen/mapgen_v5.h @@ -32,7 +32,7 @@ extern FlagDesc flagdesc_mapgen_v5[]; struct MapgenV5Params : public MapgenParams { u32 spflags = MGV5_CAVERNS; - float cave_width = 0.125f; + float cave_width = 0.09f; s16 large_cave_depth = -256; s16 lava_depth = -256; s16 cavern_limit = -256; |