diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-29 21:54:24 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-03-29 21:54:24 +0100 |
commit | 674ed9d43ac6c991882c764a04ffe4eb8146a195 (patch) | |
tree | 9c404cb7ba202e759a08afef0175a47169c4c363 /source/Generating/ComposableGenerator.cpp | |
parent | Cuboid: Fixed intersection calculation (diff) | |
download | cuberite-674ed9d43ac6c991882c764a04ffe4eb8146a195.tar cuberite-674ed9d43ac6c991882c764a04ffe4eb8146a195.tar.gz cuberite-674ed9d43ac6c991882c764a04ffe4eb8146a195.tar.bz2 cuberite-674ed9d43ac6c991882c764a04ffe4eb8146a195.tar.lz cuberite-674ed9d43ac6c991882c764a04ffe4eb8146a195.tar.xz cuberite-674ed9d43ac6c991882c764a04ffe4eb8146a195.tar.zst cuberite-674ed9d43ac6c991882c764a04ffe4eb8146a195.zip |
Diffstat (limited to 'source/Generating/ComposableGenerator.cpp')
-rw-r--r-- | source/Generating/ComposableGenerator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Generating/ComposableGenerator.cpp b/source/Generating/ComposableGenerator.cpp index d08135afa..0e5827180 100644 --- a/source/Generating/ComposableGenerator.cpp +++ b/source/Generating/ComposableGenerator.cpp @@ -328,7 +328,7 @@ void cComposableGenerator::InitStructureGens(cIniFile & a_IniFile) {
int GridSize = a_IniFile.GetValueSetI("Generator", "MineShaftsGridSize", 96);
int MaxSystemSize = a_IniFile.GetValueSetI("Generator", "MineShaftsMaxSystemSize", 128);
- m_StructureGens.push_back(new cStructGenMineShafts(Seed, GridSize, MaxSystemSize));
+ m_StructureGens.push_back(new cStructGenMineShafts(Seed, GridSize, MaxSystemSize, 600, 200, 200));
}
else if (NoCaseCompare(*itr, "OreNests") == 0)
{
|