Spawn this Block's drops into the World as EntityItems @param forture the level of the Fortune enchantment on the player's tool
(World worldIn, BlockPos pos, IBlockState state, int forture)
| 613 | * @param forture the level of the Fortune enchantment on the player's tool |
| 614 | */ |
| 615 | public final void dropBlockAsItem(World worldIn, BlockPos pos, IBlockState state, int forture) |
| 616 | { |
| 617 | this.dropBlockAsItemWithChance(worldIn, pos, state, 1.0F, forture); |
| 618 | } |
| 619 | |
| 620 | /** |
| 621 | * Spawns this Block's drops into the World as EntityItems. |
no test coverage detected