summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSTRWarrior <STRWarrior@users.noreply.github.com>2014-10-04 14:14:20 +0200
committerSTRWarrior <STRWarrior@users.noreply.github.com>2014-10-04 14:14:20 +0200
commit6fb4f2ba53e49c29397735e515a86383162a271a (patch)
tree45d933e8f7018871c1e9713f7221f18cd870ee14
parentMerge pull request #1489 from mc-server/fixes (diff)
parentFixes #1503 - No gravel is being generated (diff)
downloadcuberite-6fb4f2ba53e49c29397735e515a86383162a271a.tar
cuberite-6fb4f2ba53e49c29397735e515a86383162a271a.tar.gz
cuberite-6fb4f2ba53e49c29397735e515a86383162a271a.tar.bz2
cuberite-6fb4f2ba53e49c29397735e515a86383162a271a.tar.lz
cuberite-6fb4f2ba53e49c29397735e515a86383162a271a.tar.xz
cuberite-6fb4f2ba53e49c29397735e515a86383162a271a.tar.zst
cuberite-6fb4f2ba53e49c29397735e515a86383162a271a.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 4efcd1284..87461b944 100644
--- a/src/Generating/ComposableGenerator.cpp
+++ b/src/Generating/ComposableGenerator.cpp
@@ -422,7 +422,7 @@ void cComposableGenerator::InitFinishGens(cIniFile & a_IniFile)
// Gravel vein
cStructGenOreNests::OreInfo GravelVein;
- GravelVein.BlockType = E_BLOCK_DIRT;
+ GravelVein.BlockType = E_BLOCK_GRAVEL;
GravelVein.MaxHeight = 127;
GravelVein.NumNests = 20;
GravelVein.NestSize = 32;