Fixed cacus breaking when next to any non-air block.
This commit is contained in:
parent
318dc76fc9
commit
05c670dc50
@ -54,7 +54,7 @@ public:
|
|||||||
NIBBLETYPE BlockMeta;
|
NIBBLETYPE BlockMeta;
|
||||||
if (
|
if (
|
||||||
a_Chunk.UnboundedRelGetBlock(a_RelX + Coords[i].x, a_RelY, a_RelZ + Coords[i].z, BlockType, BlockMeta) &&
|
a_Chunk.UnboundedRelGetBlock(a_RelX + Coords[i].x, a_RelY, a_RelZ + Coords[i].z, BlockType, BlockMeta) &&
|
||||||
(BlockType != E_BLOCK_AIR)
|
(g_BlockIsSolid[BlockType])
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user