Fix BlockFluidBase having collision. Closes #2932
This commit is contained in:
parent
caa61e1be9
commit
8432f95223
1 changed files with 2 additions and 2 deletions
|
@ -643,8 +643,8 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock
|
|||
}
|
||||
|
||||
@Override
|
||||
public AxisAlignedBB getSelectedBoundingBox(IBlockState blockState, World worldIn, BlockPos pos)
|
||||
public AxisAlignedBB getCollisionBoundingBox(IBlockState blockState, World worldIn, BlockPos pos)
|
||||
{
|
||||
return null;
|
||||
return NULL_AABB;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue