Fix BlockFluidBase having collision. Closes #2932

This commit is contained in:
LexManos 2016-06-01 13:58:05 -07:00
parent caa61e1be9
commit 8432f95223

View file

@ -643,8 +643,8 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock
} }
@Override @Override
public AxisAlignedBB getSelectedBoundingBox(IBlockState blockState, World worldIn, BlockPos pos) public AxisAlignedBB getCollisionBoundingBox(IBlockState blockState, World worldIn, BlockPos pos)
{ {
return null; return NULL_AABB;
} }
} }