diff options
author | Mattes D <github@xoft.cz> | 2015-12-15 18:04:40 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2015-12-17 19:33:12 +0100 |
commit | f060d9f9b099494df889bb4258362753bbca7ed6 (patch) | |
tree | f79825371243dfcde128bc8bbcef8c222a952b67 /src/Generating/ComposableGenerator.cpp | |
parent | Merge pull request #2761 from cuberite/fixed_warnings (diff) | |
download | cuberite-f060d9f9b099494df889bb4258362753bbca7ed6.tar cuberite-f060d9f9b099494df889bb4258362753bbca7ed6.tar.gz cuberite-f060d9f9b099494df889bb4258362753bbca7ed6.tar.bz2 cuberite-f060d9f9b099494df889bb4258362753bbca7ed6.tar.lz cuberite-f060d9f9b099494df889bb4258362753bbca7ed6.tar.xz cuberite-f060d9f9b099494df889bb4258362753bbca7ed6.tar.zst cuberite-f060d9f9b099494df889bb4258362753bbca7ed6.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/ComposableGenerator.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Generating/ComposableGenerator.cpp b/src/Generating/ComposableGenerator.cpp index e5e1b0477..478404d45 100644 --- a/src/Generating/ComposableGenerator.cpp +++ b/src/Generating/ComposableGenerator.cpp @@ -415,9 +415,9 @@ void cComposableGenerator::InitFinishGens(cIniFile & a_IniFile) } else if (NoCaseCompare(*itr, "NetherForts") == 0) { - LOGINFO("The NetherForts finisher is obsolete, you should use \"PieceStructures: NetherForts\" instead."); + LOGINFO("The NetherForts finisher is obsolete, you should use \"PieceStructures: NetherFort\" instead."); auto gen = std::make_shared<cPieceStructuresGen>(Seed); - if (gen->Initialize("NetherForts", seaLevel, m_BiomeGen, m_CompositedHeightCache)) + if (gen->Initialize("NetherFort", seaLevel, m_BiomeGen, m_CompositedHeightCache)) { m_FinishGens.push_back(gen); } @@ -438,11 +438,11 @@ void cComposableGenerator::InitFinishGens(cIniFile & a_IniFile) m_FinishGens.push_back(gen); } } - else if (NoCaseCompare(finisher, "POCPieces") == 0) + else if (NoCaseCompare(finisher, "PieceStructures") == 0) { if (split.size() < 2) { - LOGWARNING("The PieceStructures generator needs the structures to use. Example: \"PieceStructures: NetherForts\"."); + LOGWARNING("The PieceStructures generator needs the structures to use. Example: \"PieceStructures: NetherFort\"."); continue; } |