Get the actual Block state of this Block at the given position. This applies properties not visible in the metadata, such as fence connections.
(IBlockState state, IBlockAccess worldIn, BlockPos pos)
| 45 | * metadata, such as fence connections. |
| 46 | */ |
| 47 | public IBlockState getActualState(IBlockState state, IBlockAccess worldIn, BlockPos pos) |
| 48 | { |
| 49 | return state.withProperty(UP, worldIn.getBlockState(pos.up()).getBlock().isBlockNormalCube()); |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Sets the block's bounds for rendering it as an item |
nothing calls this directly
no test coverage detected