summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-11-10 22:08:07 +0100
committerMattes D <github@xoft.cz>2014-11-10 22:08:29 +0100
commitb525eee8e001676d54cf43cb6c74794a60038a5c (patch)
tree6f080b742f530b123a2c901b6299536641a350e2
parentTallGrassGenerator: Fixed crash when too high (diff)
downloadcuberite-b525eee8e001676d54cf43cb6c74794a60038a5c.tar
cuberite-b525eee8e001676d54cf43cb6c74794a60038a5c.tar.gz
cuberite-b525eee8e001676d54cf43cb6c74794a60038a5c.tar.bz2
cuberite-b525eee8e001676d54cf43cb6c74794a60038a5c.tar.lz
cuberite-b525eee8e001676d54cf43cb6c74794a60038a5c.tar.xz
cuberite-b525eee8e001676d54cf43cb6c74794a60038a5c.tar.zst
cuberite-b525eee8e001676d54cf43cb6c74794a60038a5c.zip
-rw-r--r--src/Generating/Noise3DGenerator.cpp13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/Generating/Noise3DGenerator.cpp b/src/Generating/Noise3DGenerator.cpp
index 3f50ea0e9..4e45aa18b 100644
--- a/src/Generating/Noise3DGenerator.cpp
+++ b/src/Generating/Noise3DGenerator.cpp
@@ -756,11 +756,14 @@ void cBiomalNoise3DComposable::GetBiomeParams(EMCSBiome a_Biome, NOISE_DATATYPE
{
switch (a_Biome)
{
- case biDesert: a_HeightAmp = 0.29f; a_MidPoint = 62; break; // Needs verification
- case biExtremeHills: a_HeightAmp = 0.045f; a_MidPoint = 75; break;
- case biPlains: a_HeightAmp = 0.3f; a_MidPoint = 62; break; // Needs verification
- case biSwampland: a_HeightAmp = 0.25f; a_MidPoint = 59; break;
- case biSwamplandM: a_HeightAmp = 0.11f; a_MidPoint = 59; break;
+ case biDesert: a_HeightAmp = 0.29f; a_MidPoint = 62; break; // Needs verification
+ case biExtremeHills: a_HeightAmp = 0.045f; a_MidPoint = 75; break;
+ case biExtremeHillsPlus: a_HeightAmp = 0.04f; a_MidPoint = 80; break;
+ case biFrozenRiver: a_HeightAmp = 0.4f; a_MidPoint = 53; break;
+ case biPlains: a_HeightAmp = 0.3f; a_MidPoint = 62; break; // Needs verification
+ case biRiver: a_HeightAmp = 0.4f; a_MidPoint = 53; break;
+ case biSwampland: a_HeightAmp = 0.25f; a_MidPoint = 59; break;
+ case biSwamplandM: a_HeightAmp = 0.11f; a_MidPoint = 59; break;
default:
{