(World worldIn, BlockPos pos, EnumFacing facing)
| 82 | } |
| 83 | |
| 84 | private boolean canPlaceAt(World worldIn, BlockPos pos, EnumFacing facing) |
| 85 | { |
| 86 | BlockPos blockpos = pos.offset(facing.getOpposite()); |
| 87 | boolean flag = facing.getAxis().isHorizontal(); |
| 88 | return flag && worldIn.isBlockNormalCube(blockpos, true) || facing.equals(EnumFacing.UP) && this.canPlaceOn(worldIn, blockpos); |
| 89 | } |
| 90 | |
| 91 | /** |
| 92 | * Called by ItemBlocks just before a block is actually set in the world, to allow for adjustments to the |
no test coverage detected