Interface PlayerBlockBreakEvents.After
- Enclosing class:
- PlayerBlockBreakEvents
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
-
Method Summary
Modifier and TypeMethodDescriptionvoidafterBlockBreak(net.minecraft.world.World world, net.minecraft.entity.player.PlayerEntity player, net.minecraft.util.math.BlockPos pos, net.minecraft.block.BlockState state, net.minecraft.block.entity.BlockEntity blockEntity) Called after a block is successfully broken.
-
Method Details
-
afterBlockBreak
void afterBlockBreak(net.minecraft.world.World world, net.minecraft.entity.player.PlayerEntity player, net.minecraft.util.math.BlockPos pos, net.minecraft.block.BlockState state, net.minecraft.block.entity.BlockEntity blockEntity) Called after a block is successfully broken.- Parameters:
world- the world where the block was brokenplayer- the player who broke the blockpos- the position where the block was brokenstate- the block state before the block was brokenblockEntity- the block entity of the broken block, can benull
-