(BlockPos pos, EnumFacing facing)
| 3246 | } |
| 3247 | |
| 3248 | public int getRedstonePower(BlockPos pos, EnumFacing facing) |
| 3249 | { |
| 3250 | IBlockState iblockstate = this.getBlockState(pos); |
| 3251 | Block block = iblockstate.getBlock(); |
| 3252 | return block.isNormalCube() ? this.getStrongPower(pos) : block.isProvidingWeakPower(this, pos, iblockstate, facing); |
| 3253 | } |
| 3254 | |
| 3255 | public boolean isBlockPowered(BlockPos pos) |
| 3256 | { |
no test coverage detected