Interface PlayerBlockBreakEvents.Canceled

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.Canceled
  • Method Summary

    Modifier and Type Method Description
    void onBlockBreakCanceled​(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 when a block break has been canceled.
  • Method Details

    • onBlockBreakCanceled

      void onBlockBreakCanceled​(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 when a block break has been canceled.
      Parameters:
      world - the world where the block was going to be broken
      player - the player who was going to break the block
      pos - the position where the block was going to be broken
      state - the block state of the block that was going to be broken
      blockEntity - the block entity of the block that was going to be broken, can be null