summaryrefslogtreecommitdiffstats
path: root/src/Generating/ComposableGenerator.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-06-23 14:45:35 +0200
committerMattes D <github@xoft.cz>2015-06-23 14:45:35 +0200
commit6cd71a1e73b33d17de061ca339e81a699ef8d624 (patch)
treec133702c4f61da750038d0e404b274dac06564d9 /src/Generating/ComposableGenerator.cpp
parentMerge pull request #2280 from SamJBarney/master (diff)
downloadcuberite-6cd71a1e73b33d17de061ca339e81a699ef8d624.tar
cuberite-6cd71a1e73b33d17de061ca339e81a699ef8d624.tar.gz
cuberite-6cd71a1e73b33d17de061ca339e81a699ef8d624.tar.bz2
cuberite-6cd71a1e73b33d17de061ca339e81a699ef8d624.tar.lz
cuberite-6cd71a1e73b33d17de061ca339e81a699ef8d624.tar.xz
cuberite-6cd71a1e73b33d17de061ca339e81a699ef8d624.tar.zst
cuberite-6cd71a1e73b33d17de061ca339e81a699ef8d624.zip
Diffstat (limited to 'src/Generating/ComposableGenerator.cpp')
-rw-r--r--src/Generating/ComposableGenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Generating/ComposableGenerator.cpp b/src/Generating/ComposableGenerator.cpp
index 2c74340be..4eee8b707 100644
--- a/src/Generating/ComposableGenerator.cpp
+++ b/src/Generating/ComposableGenerator.cpp
@@ -274,7 +274,7 @@ void cComposableGenerator::InitCompositionGen(cIniFile & a_IniFile)
}
// Create a cache of the composited heightmaps, so that finishers may use it:
- m_CompositedHeightCache = std::make_shared<cHeiGenMultiCache>(std::make_shared<cCompositedHeiGen>(m_ShapeGen, m_CompositionGen), 16, 24);
+ m_CompositedHeightCache = std::make_shared<cHeiGenMultiCache>(std::make_shared<cCompositedHeiGen>(m_BiomeGen, m_ShapeGen, m_CompositionGen), 16, 24);
// 24 subcaches of depth 16 each = 96 KiB of RAM. Acceptable, for the amount of work this saves.
}