1
0

NetherFortGen: Added several more prefabs.

Also extended the defauls MaxDepth value to 12.
This commit is contained in:
madmaxoft
2014-03-28 23:39:40 +01:00
parent 0f1087b7d5
commit 76f0d167b1
2 changed files with 783 additions and 2 deletions

View File

@@ -373,7 +373,7 @@ void cComposableGenerator::InitFinishGens(cIniFile & a_IniFile)
else if (NoCaseCompare(*itr, "NetherForts") == 0)
{
int GridSize = a_IniFile.GetValueSetI("Generator", "NetherFortsGridSize", 512);
int MaxDepth = a_IniFile.GetValueSetI("Generator", "NetherFortsMaxDepth", 6);
int MaxDepth = a_IniFile.GetValueSetI("Generator", "NetherFortsMaxDepth", 12);
m_FinishGens.push_back(new cNetherFortGen(Seed, GridSize, MaxDepth));
}
else if (NoCaseCompare(*itr, "OreNests") == 0)