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.

@FunctionalInterface public static interface PlayerBlockBreakEvents.After
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    afterBlockBreak(net.minecraft.world.level.Level level, net.minecraft.world.entity.player.Player player, net.minecraft.core.BlockPos pos, net.minecraft.world.level.block.state.BlockState state, @Nullable net.minecraft.world.level.block.entity.BlockEntity blockEntity)
    Called after a block is successfully broken.
  • Method Details

    • afterBlockBreak

      void afterBlockBreak(net.minecraft.world.level.Level level, net.minecraft.world.entity.player.Player player, net.minecraft.core.BlockPos pos, net.minecraft.world.level.block.state.BlockState state, @Nullable net.minecraft.world.level.block.entity.BlockEntity blockEntity)
      Called after a block is successfully broken.
      Parameters:
      level - the level where the block was broken
      player - the player who broke the block
      pos - the position where the block was broken
      state - the block state before the block was broken
      blockEntity - the block entity of the broken block, can be null