Whether this Block is solid on the given Side
(IBlockAccess worldIn, BlockPos pos, EnumFacing side)
| 481 | * Whether this Block is solid on the given Side |
| 482 | */ |
| 483 | public boolean isBlockSolid(IBlockAccess worldIn, BlockPos pos, EnumFacing side) |
| 484 | { |
| 485 | return worldIn.getBlockState(pos).getBlock().getMaterial().isSolid(); |
| 486 | } |
| 487 | |
| 488 | public AxisAlignedBB getSelectedBoundingBox(World worldIn, BlockPos pos) |
| 489 | { |
nothing calls this directly
no test coverage detected