summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-06-16 14:53:33 +0200
committermadmaxoft <github@xoft.cz>2014-06-16 14:53:33 +0200
commit6b503b45a06429513cca2bf69d2835853b906337 (patch)
tree3c21acb433f0fadfdea542f54329d037f62565a4
parentUpdated the SandFlatRoofVillage prefabs. (diff)
downloadcuberite-6b503b45a06429513cca2bf69d2835853b906337.tar
cuberite-6b503b45a06429513cca2bf69d2835853b906337.tar.gz
cuberite-6b503b45a06429513cca2bf69d2835853b906337.tar.bz2
cuberite-6b503b45a06429513cca2bf69d2835853b906337.tar.lz
cuberite-6b503b45a06429513cca2bf69d2835853b906337.tar.xz
cuberite-6b503b45a06429513cca2bf69d2835853b906337.tar.zst
cuberite-6b503b45a06429513cca2bf69d2835853b906337.zip
-rw-r--r--src/Generating/ComposableGenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Generating/ComposableGenerator.cpp b/src/Generating/ComposableGenerator.cpp
index f332b4d78..22941dcbe 100644
--- a/src/Generating/ComposableGenerator.cpp
+++ b/src/Generating/ComposableGenerator.cpp
@@ -449,7 +449,7 @@ void cComposableGenerator::InitFinishGens(cIniFile & a_IniFile)
{
int Size = a_IniFile.GetValueSetI("Generator", "WormNestCavesSize", 64);
int Grid = a_IniFile.GetValueSetI("Generator", "WormNestCavesGrid", 96);
- int MaxOffset = a_IniFile.GetValueSetI("Generator", "NetherFortMaxOffset", 32);
+ int MaxOffset = a_IniFile.GetValueSetI("Generator", "WormNestMaxOffset", 32);
m_FinishGens.push_back(new cStructGenWormNestCaves(Seed, Size, Grid, MaxOffset));
}
else