diff --git a/paper-api/src/main/java/org/bukkit/block/BlockState.java b/paper-api/src/main/java/org/bukkit/block/BlockState.java index ee4cbbc584..3bcdb02f8f 100644 --- a/paper-api/src/main/java/org/bukkit/block/BlockState.java +++ b/paper-api/src/main/java/org/bukkit/block/BlockState.java @@ -253,5 +253,41 @@ public interface BlockState extends Metadatable { * @return true if collidable */ boolean isCollidable(); + + /** + * Returns an immutable list of items which would drop by destroying this block state. + * + * @return an immutable list of dropped items for the block state + * @throws IllegalStateException if this block state is not placed + */ + @NotNull + default java.util.@org.jetbrains.annotations.Unmodifiable Collection getDrops() { + return this.getDrops(null); + } + + /** + * Returns an immutable list of items which would drop by destroying this block state + * with a specific tool + * + * @param tool The tool or item in hand used for digging + * @return an immutable list of dropped items for the block state + * @throws IllegalStateException if this block state is not placed + */ + @NotNull + default java.util.@org.jetbrains.annotations.Unmodifiable Collection getDrops(@Nullable org.bukkit.inventory.ItemStack tool) { + return this.getDrops(tool, null); + } + + /** + * Returns an immutable list of items which would drop by the entity destroying this + * block state with a specific tool + * + * @param tool The tool or item in hand used for digging + * @param entity the entity destroying the block + * @return an immutable list of dropped items for the block state + * @throws IllegalStateException if this block state is not placed + */ + @NotNull + java.util.@org.jetbrains.annotations.Unmodifiable Collection getDrops(@Nullable org.bukkit.inventory.ItemStack tool, @Nullable org.bukkit.entity.Entity entity); // Paper end }