Fix the Blood Tank BB (#1347)

This commit is contained in:
Arcaratus 2018-06-20 21:43:33 -04:00 committed by Nick Ignoffo
parent 8bec2f3872
commit 1096c697f4

View file

@ -48,14 +48,8 @@ public class BlockBloodTank extends BlockInteger implements IVariantProvider, IB
setLightOpacity(0);
}
@Nullable
@Override
public AxisAlignedBB getCollisionBoundingBox(IBlockState blockState, IBlockAccess worldIn, BlockPos pos) {
return BOX;
}
@Override
public AxisAlignedBB getSelectedBoundingBox(IBlockState state, World worldIn, BlockPos pos) {
public AxisAlignedBB getBoundingBox(IBlockState state, IBlockAccess source, BlockPos pos) {
return BOX;
}