Add BlockLockCheckEvent

This commit is contained in:
Jake Potrebic
2022-05-21 20:59:56 -07:00
parent 345305859e
commit 4b5bb29329
4 changed files with 200 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ import org.jetbrains.annotations.Nullable;
/**
* Represents a captured state of a beacon.
*/
public interface Beacon extends TileState, Lockable, Nameable {
public interface Beacon extends io.papermc.paper.block.LockableTileState { // Paper
/**
* Returns the list of players within the beacon's range of effect.

View File

@@ -8,7 +8,7 @@ import org.jetbrains.annotations.NotNull;
/**
* Represents a captured state of a container block.
*/
public interface Container extends TileState, BlockInventoryHolder, Lockable, Nameable {
public interface Container extends io.papermc.paper.block.LockableTileState, BlockInventoryHolder { // Paper
/**
* Gets the inventory of the block represented by this block state.