summaryrefslogtreecommitdiffstats
path: root/src/Generating/DistortedHeightmap.cpp
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-06-10 22:59:45 +0200
committermadmaxoft <github@xoft.cz>2014-06-10 22:59:45 +0200
commit1ff1a93866ab81e3868588a256f446a902a1a8c4 (patch)
tree32dacb18b42599309f428802958f39c2cd6ba405 /src/Generating/DistortedHeightmap.cpp
parentFixed clang warnings about abs() in Noise.cpp. (diff)
downloadcuberite-1ff1a93866ab81e3868588a256f446a902a1a8c4.tar
cuberite-1ff1a93866ab81e3868588a256f446a902a1a8c4.tar.gz
cuberite-1ff1a93866ab81e3868588a256f446a902a1a8c4.tar.bz2
cuberite-1ff1a93866ab81e3868588a256f446a902a1a8c4.tar.lz
cuberite-1ff1a93866ab81e3868588a256f446a902a1a8c4.tar.xz
cuberite-1ff1a93866ab81e3868588a256f446a902a1a8c4.tar.zst
cuberite-1ff1a93866ab81e3868588a256f446a902a1a8c4.zip
Diffstat (limited to 'src/Generating/DistortedHeightmap.cpp')
-rw-r--r--src/Generating/DistortedHeightmap.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Generating/DistortedHeightmap.cpp b/src/Generating/DistortedHeightmap.cpp
index eb9fe92ba..e50f36d57 100644
--- a/src/Generating/DistortedHeightmap.cpp
+++ b/src/Generating/DistortedHeightmap.cpp
@@ -282,7 +282,7 @@ cDistortedHeightmap::cDistortedHeightmap(int a_Seed, cBiomeGen & a_BiomeGen) :
m_OceanFloorSelect(a_Seed + 3000),
m_MesaFloor(a_Seed + 4000),
m_BiomeGen(a_BiomeGen),
- m_UnderlyingHeiGen(a_Seed, a_BiomeGen),
+ m_UnderlyingHeiGen(a_Seed),
m_HeightGen(m_UnderlyingHeiGen, 64),
m_IsInitialized(false)
{
@@ -308,6 +308,8 @@ void cDistortedHeightmap::Initialize(cIniFile & a_IniFile)
return;
}
+ ((cTerrainHeightGen &)m_UnderlyingHeiGen).InitializeHeightGen(a_IniFile);
+
// Read the params from the INI file:
m_SeaLevel = a_IniFile.GetValueSetI("Generator", "DistortedHeightmapSeaLevel", 62);
m_FrequencyX = (NOISE_DATATYPE)a_IniFile.GetValueSetF("Generator", "DistortedHeightmapFrequencyX", 10);