(BlockPos pos)
| 2410 | } |
| 2411 | |
| 2412 | public boolean isBlockFullCube(BlockPos pos) |
| 2413 | { |
| 2414 | IBlockState iblockstate = this.getBlockState(pos); |
| 2415 | AxisAlignedBB axisalignedbb = iblockstate.getBlock().getCollisionBoundingBox(this, pos, iblockstate); |
| 2416 | return axisalignedbb != null && axisalignedbb.getAverageEdgeLength() >= 1.0D; |
| 2417 | } |
| 2418 | |
| 2419 | public static boolean doesBlockHaveSolidTopSurface(IBlockAccess blockAccess, BlockPos pos) |
| 2420 | { |
no test coverage detected