diff options
author | paramat <mat.gregory@virginmedia.com> | 2017-01-15 01:21:36 +0000 |
---|---|---|
committer | paramat <mat.gregory@virginmedia.com> | 2017-01-15 02:04:01 +0000 |
commit | e12019cfd9ff4e9afa1d7dd326a0094b15fb9b2b (patch) | |
tree | e2c1185b53d3f9319e1ef17006e29fd3806ead86 /minetest.conf.example | |
parent | d03b4fb627b51fd794033452cfa3af77e879d0b5 (diff) | |
download | minetest-e12019cfd9ff4e9afa1d7dd326a0094b15fb9b2b.tar.gz minetest-e12019cfd9ff4e9afa1d7dd326a0094b15fb9b2b.tar.bz2 minetest-e12019cfd9ff4e9afa1d7dd326a0094b15fb9b2b.zip |
Documentation: Correct biome heat / humidity noise parameters
When the new set of biomes was added in MTGame the 'spread' for heat
and humidity noise parameters was increased to 1000, i forgot to update
settingtypes.txt and minetest.conf.
Diffstat (limited to 'minetest.conf.example')
-rw-r--r-- | minetest.conf.example | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index 13b2dc7a7..3b686aa61 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -1131,13 +1131,13 @@ # Noise parameters for biome API temperature, humidity and biome blend. # type: noise_params -# mg_biome_np_heat = 50, 50, (750, 750, 750), 5349, 3, 0.5, 2.0 +# mg_biome_np_heat = 50, 50, (1000, 1000, 1000), 5349, 3, 0.5, 2.0 # type: noise_params # mg_biome_np_heat_blend = 0, 1.5, (8, 8, 8), 13, 2, 1.0, 2.0 # type: noise_params -# mg_biome_np_humidity = 50, 50, (750, 750, 750), 842, 3, 0.5, 2.0 +# mg_biome_np_humidity = 50, 50, (1000, 1000, 1000), 842, 3, 0.5, 2.0 # type: noise_params # mg_biome_np_humidity_blend = 0, 1.5, (8, 8, 8), 90003, 2, 1.0, 2.0 |