diff options
author | STRWarrior <STRWarrior@users.noreply.github.com> | 2014-10-04 14:14:20 +0200 |
---|---|---|
committer | STRWarrior <STRWarrior@users.noreply.github.com> | 2014-10-04 14:14:20 +0200 |
commit | 6fb4f2ba53e49c29397735e515a86383162a271a (patch) | |
tree | 45d933e8f7018871c1e9713f7221f18cd870ee14 | |
parent | Merge pull request #1489 from mc-server/fixes (diff) | |
parent | Fixes #1503 - No gravel is being generated (diff) | |
download | cuberite-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 |
Diffstat (limited to '')
-rw-r--r-- | src/Generating/ComposableGenerator.cpp | 2 |
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; |