Skip to content

Commit 4967e48

Browse files
committedSep 7, 2015
Mgv5/mgv7 biomes: Reduce heat and humidity noise spreads to former value of 750
1 parent 645e208 commit 4967e48

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

Diff for: ‎minetest.conf.example

+2-2
Original file line numberDiff line numberDiff line change
@@ -733,9 +733,9 @@
733733
# other noise parameters are shown in positional format to save space.
734734

735735
# Noise parameters for biome API temperature, humidity and biome blend
736-
#mg_biome_np_heat = 50, 50, (1000, 1000, 1000), 5349, 3, 0.5, 2.0
736+
#mg_biome_np_heat = 50, 50, (750, 750, 750), 5349, 3, 0.5, 2.0
737737
#mg_biome_np_heat_blend = 0, 1.5, (8, 8, 8), 13, 2, 1.0, 2.0
738-
#mg_biome_np_humidity = 50, 50, (1000, 1000, 1000), 842, 3, 0.5, 2.0
738+
#mg_biome_np_humidity = 50, 50, (750, 750, 750), 842, 3, 0.5, 2.0
739739
#mg_biome_np_humidity_blend = 0, 1.5, (8, 8, 8), 90003, 2, 1.0, 2.0
740740

741741
#mgv5_np_filler_depth = 0, 1, (150, 150, 150), 261, 4, 0.7, 2.0

Diff for: ‎src/mapgen.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ struct MapgenParams {
127127
seed(0),
128128
water_level(1),
129129
flags(MG_TREES | MG_CAVES | MG_LIGHT),
130-
np_biome_heat(NoiseParams(50, 50, v3f(1000.0, 1000.0, 1000.0), 5349, 3, 0.5, 2.0)),
130+
np_biome_heat(NoiseParams(50, 50, v3f(750.0, 750.0, 750.0), 5349, 3, 0.5, 2.0)),
131131
np_biome_heat_blend(NoiseParams(0, 1.5, v3f(8.0, 8.0, 8.0), 13, 2, 1.0, 2.0)),
132-
np_biome_humidity(NoiseParams(50, 50, v3f(1000.0, 1000.0, 1000.0), 842, 3, 0.5, 2.0)),
132+
np_biome_humidity(NoiseParams(50, 50, v3f(750.0, 750.0, 750.0), 842, 3, 0.5, 2.0)),
133133
np_biome_humidity_blend(NoiseParams(0, 1.5, v3f(8.0, 8.0, 8.0), 90003, 2, 1.0, 2.0)),
134134
sparams(NULL)
135135
{}

0 commit comments

Comments
 (0)
Please sign in to comment.