From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Cryptite Date: Mon, 10 Apr 2023 07:31:55 -0500 Subject: [PATCH] Add provided Material to getDrops diff --git a/src/main/java/org/bukkit/block/Block.java b/src/main/java/org/bukkit/block/Block.java index 4d817cdebb6d6b3823c3a62aa9a0147ab720c5e0..c5017cd1bc1bea603a2e0b4f4d1541abb8a33911 100644 --- a/src/main/java/org/bukkit/block/Block.java +++ b/src/main/java/org/bukkit/block/Block.java @@ -675,6 +675,20 @@ public interface Block extends Metadatable, Translatable, net.kyori.adventure.tr @NotNull Collection getDrops(@Nullable ItemStack tool, @Nullable Entity entity); // Paper + // Slice start + /** + * Returns a list of items which would drop by the entity destroying this + * block as though it were a given Material with a specific tool + * + * @param blockType The block type to use as the source loot + * @param tool The tool or item in hand used for digging + * @param entity the entity destroying the block + * @return a list of dropped items for this type of block + */ + @NotNull + Collection getDrops(@NotNull Material blockType, @NotNull ItemStack tool, @Nullable Entity entity); + // Slice end + /** * Returns if the given item is a preferred choice to break this Block. *