Checks if the block can be caught on fire
(IBlockAccess worldIn, BlockPos pos)
| 359 | * Checks if the block can be caught on fire |
| 360 | */ |
| 361 | public boolean canCatchFire(IBlockAccess worldIn, BlockPos pos) |
| 362 | { |
| 363 | return this.getEncouragement(worldIn.getBlockState(pos).getBlock()) > 0; |
| 364 | } |
| 365 | |
| 366 | public boolean canPlaceBlockAt(World worldIn, BlockPos pos) |
| 367 | { |
no test coverage detected