diff options
author | Mattes D <github@xoft.cz> | 2014-12-04 23:08:33 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-12-04 23:08:33 +0100 |
commit | 8046022a837319000af913697147e5576bbb8348 (patch) | |
tree | a460a2b6d674e64764b6a70c820d7a1d9867e7f8 /src/Generating/FinishGen.cpp | |
parent | Merge pull request #1645 from jonfabe/SpectatorModeFixes (diff) | |
parent | conflict resolution (diff) | |
download | cuberite-8046022a837319000af913697147e5576bbb8348.tar cuberite-8046022a837319000af913697147e5576bbb8348.tar.gz cuberite-8046022a837319000af913697147e5576bbb8348.tar.bz2 cuberite-8046022a837319000af913697147e5576bbb8348.tar.lz cuberite-8046022a837319000af913697147e5576bbb8348.tar.xz cuberite-8046022a837319000af913697147e5576bbb8348.tar.zst cuberite-8046022a837319000af913697147e5576bbb8348.zip |
Diffstat (limited to 'src/Generating/FinishGen.cpp')
-rw-r--r-- | src/Generating/FinishGen.cpp | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/Generating/FinishGen.cpp b/src/Generating/FinishGen.cpp index 9e035926e..ec487db53 100644 --- a/src/Generating/FinishGen.cpp +++ b/src/Generating/FinishGen.cpp @@ -370,7 +370,8 @@ void cFinishGenSprinkleFoliage::GenFinish(cChunkDesc & a_ChunkDesc) (a_ChunkDesc.GetBlockType(x + 1, y, z) == E_BLOCK_AIR) && (a_ChunkDesc.GetBlockType(x - 1, y, z) == E_BLOCK_AIR) && (a_ChunkDesc.GetBlockType(x, y, z + 1) == E_BLOCK_AIR) && - (a_ChunkDesc.GetBlockType(x, y, z - 1) == E_BLOCK_AIR) + (a_ChunkDesc.GetBlockType(x, y, z - 1) == E_BLOCK_AIR) && + IsDesertVariant(a_ChunkDesc.GetBiome(x, z)) ) { a_ChunkDesc.SetBlockType(x, ++Top, z, E_BLOCK_CACTUS); @@ -391,6 +392,20 @@ void cFinishGenSprinkleFoliage::GenFinish(cChunkDesc & a_ChunkDesc) +bool cFinishGenSprinkleFoliage::IsDesertVariant(EMCSBiome a_Biome) +{ + return + ( + (a_Biome == biDesertHills) || + (a_Biome == biDesert) || + (a_Biome == biDesertM) + ); +} + + + + + //////////////////////////////////////////////////////////////////////////////// // cFinishGenSoulsandRims |