Skip to content

Commit 0d94bfa

Browse files
sfan5paramat
authored andcommittedDec 13, 2016
Mgv7: Change default cave width to 0.09
1 parent 5400710 commit 0d94bfa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

Diff for: ‎builtin/settingtypes.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,7 @@ mgv6_np_apple_trees (Mapgen v6 apple trees noise parameters) noise_params 0, 1,
972972
mgv7_spflags (Mapgen v7 flags) flags mountains,ridges mountains,ridges,floatlands,nomountains,noridges,nofloatlands
973973

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

977977
# Controls the density of floatland mountain terrain.
978978
# Is an offset added to the 'np_mountain' noise value.

Diff for: ‎minetest.conf.example

+1-1
Original file line numberDiff line numberDiff line change
@@ -1252,7 +1252,7 @@
12521252

12531253
# Controls width of tunnels, a smaller value creates wider tunnels.
12541254
# type: float
1255-
# mgv7_cave_width = 0.2
1255+
# mgv7_cave_width = 0.09
12561256

12571257
# Controls the density of floatland mountain terrain.
12581258
# Is an offset added to the 'np_mountain' noise value.

Diff for: ‎src/mapgen_v7.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ MapgenV7::~MapgenV7()
101101
MapgenV7Params::MapgenV7Params()
102102
{
103103
spflags = MGV7_MOUNTAINS | MGV7_RIDGES;
104-
cave_width = 0.2;
104+
cave_width = 0.09;
105105
float_mount_density = 0.6;
106106
float_mount_height = 128.0;
107107
floatland_level = 1280;

0 commit comments

Comments
 (0)
Please sign in to comment.