1
0
Fork 0

Changed IsSolid to FullyOccupiesVoxel

This commit is contained in:
Howaner 2014-07-31 23:08:08 +02:00
parent bffad50436
commit 87d195171a
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public:
}
BLOCKTYPE BlockBelow = a_ChunkInterface.GetBlock(a_BlockX, a_BlockY - 1, a_BlockZ);
if (!cBlockInfo::IsSolid(BlockBelow) && !IsBlockLava(BlockBelow) && !IsBlockWater(BlockBelow))
if (!cBlockInfo::FullyOccupiesVoxel(BlockBelow) && !IsBlockLiquid(BlockBelow))
{
return;
}