summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSTRWarrior <niels.breuker@hotmail.nl>2014-07-27 20:48:39 +0200
committerSTRWarrior <niels.breuker@hotmail.nl>2014-07-27 20:48:39 +0200
commitd61f1d0f4a1565d4de7e8100d9bf766d6fd458d1 (patch)
tree3fa4b8f4018fc040ff4e259e822a1fd9cb9cf714
parentUpdated NetherForts' weights. (diff)
downloadcuberite-d61f1d0f4a1565d4de7e8100d9bf766d6fd458d1.tar
cuberite-d61f1d0f4a1565d4de7e8100d9bf766d6fd458d1.tar.gz
cuberite-d61f1d0f4a1565d4de7e8100d9bf766d6fd458d1.tar.bz2
cuberite-d61f1d0f4a1565d4de7e8100d9bf766d6fd458d1.tar.lz
cuberite-d61f1d0f4a1565d4de7e8100d9bf766d6fd458d1.tar.xz
cuberite-d61f1d0f4a1565d4de7e8100d9bf766d6fd458d1.tar.zst
cuberite-d61f1d0f4a1565d4de7e8100d9bf766d6fd458d1.zip
-rw-r--r--src/Generating/FinishGen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Generating/FinishGen.cpp b/src/Generating/FinishGen.cpp
index 03137f616..9f0c8f3fa 100644
--- a/src/Generating/FinishGen.cpp
+++ b/src/Generating/FinishGen.cpp
@@ -141,7 +141,7 @@ void cFinishGenNetherClumpFoliage::TryPlaceClump(cChunkDesc & a_ChunkDesc, int a
}
BLOCKTYPE BlockBelow = a_ChunkDesc.GetBlockType(x, y - 1, z);
- if (!cBlockInfo::IsSolid(BlockBelow)) // Only place on solid blocks
+ if (!cBlockInfo::FullyOccupiesVoxel(BlockBelow)) // Only place on solid blocks
{
continue;
}