Check whether this Block can be placed on the given side
(World worldIn, BlockPos pos, EnumFacing side)
| 863 | * Check whether this Block can be placed on the given side |
| 864 | */ |
| 865 | public boolean canPlaceBlockOnSide(World worldIn, BlockPos pos, EnumFacing side) |
| 866 | { |
| 867 | return this.canPlaceBlockAt(worldIn, pos); |
| 868 | } |
| 869 | |
| 870 | public boolean canPlaceBlockAt(World worldIn, BlockPos pos) |
| 871 | { |
no test coverage detected