summaryrefslogtreecommitdiffstats
path: root/src/Generating/ComposableGenerator.cpp
diff options
context:
space:
mode:
authorSTRWarrior <niels.breuker@hotmail.nl>2014-08-10 22:36:02 +0200
committerSTRWarrior <niels.breuker@hotmail.nl>2014-08-10 22:36:02 +0200
commitd95768d01a93a14df38f6e0e33ca180b779c5df0 (patch)
tree16412805d255206f91c4eece1aa2a98104ab2df6 /src/Generating/ComposableGenerator.cpp
parentAdded NaturalPatches generator (diff)
downloadcuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar
cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar.gz
cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar.bz2
cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar.lz
cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar.xz
cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.tar.zst
cuberite-d95768d01a93a14df38f6e0e33ca180b779c5df0.zip
Diffstat (limited to 'src/Generating/ComposableGenerator.cpp')
-rw-r--r--src/Generating/ComposableGenerator.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Generating/ComposableGenerator.cpp b/src/Generating/ComposableGenerator.cpp
index 58ad8fc2e..2f575fe27 100644
--- a/src/Generating/ComposableGenerator.cpp
+++ b/src/Generating/ComposableGenerator.cpp
@@ -424,13 +424,13 @@ void cComposableGenerator::InitFinishGens(cIniFile & a_IniFile)
{
cStructGenOreNests::OreList Ores;
- // Quarts vein
- cStructGenOreNests::OreInfo QuartsVein;
- QuartsVein.BlockType = E_BLOCK_NETHER_QUARTZ_ORE;
- QuartsVein.MaxHeight = 255;
- QuartsVein.NumNests = 80;
- QuartsVein.NestSize = 8;
- Ores.push_back(QuartsVein);
+ // Quartz vein
+ cStructGenOreNests::OreInfo QuartzVein;
+ QuartzVein.BlockType = E_BLOCK_NETHER_QUARTZ_ORE;
+ QuartzVein.MaxHeight = 255;
+ QuartzVein.NumNests = 80;
+ QuartzVein.NestSize = 8;
+ Ores.push_back(QuartzVein);
m_FinishGens.push_back(new cStructGenOreNests(Seed, Ores, E_BLOCK_NETHERRACK));