From 879b7262b4ad174f0de09eaa45de69b07f4dfe2c Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 21 Oct 2012 20:06:31 +0000 Subject: Added the first part of the PreSimulator finisher, drops floating sand and gravel to ground. git-svn-id: http://mc-server.googlecode.com/svn/trunk@998 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/Generating/ChunkGenerator.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/Generating/ChunkGenerator.cpp') diff --git a/source/Generating/ChunkGenerator.cpp b/source/Generating/ChunkGenerator.cpp index b4bd1410d..27a802e4d 100644 --- a/source/Generating/ChunkGenerator.cpp +++ b/source/Generating/ChunkGenerator.cpp @@ -366,6 +366,10 @@ void cChunkGenerator::InitFinishGens(cIniFile & a_IniFile) int BottomLavaLevel = a_IniFile.GetValueSetI("Generator", "BottomLavaLevel", 10); m_FinishGens.push_back(new cFinishGenBottomLava(BottomLavaLevel)); } + else if (NoCaseCompare(*itr, "PreSimulator") == 0) + { + m_FinishGens.push_back(new cFinishGenPreSimulator); + } } // for itr - Str[] } -- cgit v1.2.3