Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Mgv7: Change default cave width to 0.09
  • Loading branch information
sfan5 authored and paramat committed Dec 13, 2016
1 parent 5400710 commit 0d94bfa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion builtin/settingtypes.txt
Expand Up @@ -972,7 +972,7 @@ mgv6_np_apple_trees (Mapgen v6 apple trees noise parameters) noise_params 0, 1,
mgv7_spflags (Mapgen v7 flags) flags mountains,ridges mountains,ridges,floatlands,nomountains,noridges,nofloatlands

# Controls width of tunnels, a smaller value creates wider tunnels.
mgv7_cave_width (Mapgen v7 cave width) float 0.2
mgv7_cave_width (Mapgen v7 cave width) float 0.09

# Controls the density of floatland mountain terrain.
# Is an offset added to the 'np_mountain' noise value.
Expand Down
2 changes: 1 addition & 1 deletion minetest.conf.example
Expand Up @@ -1252,7 +1252,7 @@

# Controls width of tunnels, a smaller value creates wider tunnels.
# type: float
# mgv7_cave_width = 0.2
# mgv7_cave_width = 0.09

# Controls the density of floatland mountain terrain.
# Is an offset added to the 'np_mountain' noise value.
Expand Down
2 changes: 1 addition & 1 deletion src/mapgen_v7.cpp
Expand Up @@ -101,7 +101,7 @@ MapgenV7::~MapgenV7()
MapgenV7Params::MapgenV7Params()
{
spflags = MGV7_MOUNTAINS | MGV7_RIDGES;
cave_width = 0.2;
cave_width = 0.09;
float_mount_density = 0.6;
float_mount_height = 128.0;
floatland_level = 1280;
Expand Down

0 comments on commit 0d94bfa

Please sign in to comment.