summaryrefslogtreecommitdiff
path: root/src/mapgen.h
diff options
context:
space:
mode:
authorparamat <mat.gregory@virginmedia.com>2015-05-24 01:37:50 +0100
committerparamat <mat.gregory@virginmedia.com>2015-05-24 04:33:09 +0100
commit774e5d17c4ca32af51e87954a24607c72f943600 (patch)
tree033c57d683a3c75eb911ffebe7b44911a2ec65ea /src/mapgen.h
parent3dba6d1f90f17d94b17a99863c00889fc81b211e (diff)
downloadminetest-774e5d17c4ca32af51e87954a24607c72f943600.tar.gz
minetest-774e5d17c4ca32af51e87954a24607c72f943600.tar.bz2
minetest-774e5d17c4ca32af51e87954a24607c72f943600.zip
Biome API, mgv7: Increase heat/humidity spreads. Improve mgv7 noise parameters
Diffstat (limited to 'src/mapgen.h')
-rw-r--r--src/mapgen.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapgen.h b/src/mapgen.h
index 351a09bb2..a875e0f3d 100644
--- a/src/mapgen.h
+++ b/src/mapgen.h
@@ -125,8 +125,8 @@ struct MapgenParams {
seed(0),
water_level(1),
flags(MG_TREES | MG_CAVES | MG_LIGHT),
- np_biome_heat(NoiseParams(50, 50, v3f(500.0, 500.0, 500.0), 5349, 3, 0.5, 2.0)),
- np_biome_humidity(NoiseParams(50, 50, v3f(500.0, 500.0, 500.0), 842, 3, 0.5, 2.0)),
+ np_biome_heat(NoiseParams(50, 50, v3f(750.0, 750.0, 750.0), 5349, 3, 0.5, 2.0)),
+ np_biome_humidity(NoiseParams(50, 50, v3f(750.0, 750.0, 750.0), 842, 3, 0.5, 2.0)),
sparams(NULL)
{}