From ab6e8b790c1269912aceb7b3759a7c03e4deca08 Mon Sep 17 00:00:00 2001 From: NiLSPACE Date: Sat, 5 Mar 2016 23:56:08 +0100 Subject: Implemented OverworldClumpFlowers --- src/Generating/ComposableGenerator.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/Generating/ComposableGenerator.cpp') diff --git a/src/Generating/ComposableGenerator.cpp b/src/Generating/ComposableGenerator.cpp index e9ab96aec..2b2b92ccf 100644 --- a/src/Generating/ComposableGenerator.cpp +++ b/src/Generating/ComposableGenerator.cpp @@ -438,6 +438,11 @@ void cComposableGenerator::InitFinishGens(cIniFile & a_IniFile) m_FinishGens.push_back(gen); } } + else if (NoCaseCompare(finisher, "OverworldClumpFlowers") == 0) + { + auto flowers = cFinishGenClumpTopBlock::ParseIniFile(a_IniFile, "OverworldClumpFlowers"); + m_FinishGens.push_back(cFinishGenPtr(new cFinishGenClumpTopBlock(Seed, flowers))); + } else if (NoCaseCompare(finisher, "PieceStructures") == 0) { if (split.size() < 2) -- cgit v1.2.3