summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-11-13 21:47:39 +0100
committerMattes D <github@xoft.cz>2014-11-13 21:47:39 +0100
commit2789fafeb7445a69ccd31e7867e5c9f27654725f (patch)
tree81ca4f2b91bdd74d27f1bdd7e73756e5d94081be
parentFixed trailing whitespace. (diff)
downloadcuberite-2789fafeb7445a69ccd31e7867e5c9f27654725f.tar
cuberite-2789fafeb7445a69ccd31e7867e5c9f27654725f.tar.gz
cuberite-2789fafeb7445a69ccd31e7867e5c9f27654725f.tar.bz2
cuberite-2789fafeb7445a69ccd31e7867e5c9f27654725f.tar.lz
cuberite-2789fafeb7445a69ccd31e7867e5c9f27654725f.tar.xz
cuberite-2789fafeb7445a69ccd31e7867e5c9f27654725f.tar.zst
cuberite-2789fafeb7445a69ccd31e7867e5c9f27654725f.zip
-rw-r--r--src/Generating/Noise3DGenerator.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Generating/Noise3DGenerator.cpp b/src/Generating/Noise3DGenerator.cpp
index 4e45aa18b..d516b612c 100644
--- a/src/Generating/Noise3DGenerator.cpp
+++ b/src/Generating/Noise3DGenerator.cpp
@@ -756,10 +756,13 @@ void cBiomalNoise3DComposable::GetBiomeParams(EMCSBiome a_Biome, NOISE_DATATYPE
{
switch (a_Biome)
{
+ case biDeepOcean: a_HeightAmp = 0.17f; a_MidPoint = 35; 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 biFrozenOcean: a_HeightAmp = 0.17f; a_MidPoint = 47; break;
+ case biOcean: a_HeightAmp = 0.17f; a_MidPoint = 47; 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;