Mgv7: Change default cave width to 0.09
authorsfan5 <sfan5@live.de>
Mon, 12 Dec 2016 16:10:16 +0000 (17:10 +0100)
committerparamat <mat.gregory@virginmedia.com>
Tue, 13 Dec 2016 03:32:51 +0000 (03:32 +0000)
builtin/settingtypes.txt
minetest.conf.example
src/mapgen_v7.cpp

index 822568af441aae59d9f4ed96d0bf9944a4ed29b1..df4484750abee0d7eb655e1168ecbd1c367f9fe5 100644 (file)
@@ -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.
index f0e5f1d479605c0d4520954ecfe1dc2ffebb9072..e372e58337afc27e477fb86f578adc452fd60f11 100644 (file)
 
 #    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.
index 498a1333ccb382a1ea3e5277df795fb03183b92f..04a9e3c16e3332b0d747ad3cf7749b24c7038cc2 100644 (file)
@@ -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;