(World worldIn, BlockPos pos)
| 263 | } |
| 264 | |
| 265 | protected boolean canDie(World worldIn, BlockPos pos) |
| 266 | { |
| 267 | return worldIn.canLightningStrike(pos) || worldIn.canLightningStrike(pos.west()) || worldIn.canLightningStrike(pos.east()) || worldIn.canLightningStrike(pos.north()) || worldIn.canLightningStrike(pos.south()); |
| 268 | } |
| 269 | |
| 270 | public boolean requiresUpdates() |
| 271 | { |
no test coverage detected