32 lines
1.3 KiB
Diff
32 lines
1.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Cryptite <cryptite@gmail.com>
|
|
Date: Fri, 12 Aug 2022 10:40:48 -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 814bad7830fd0ceb741a4b31685dd2576a0a57c2..1e0e90b64f39125c82d87bab970afbd90072944d 100644
|
|
--- a/src/main/java/org/bukkit/block/Block.java
|
|
+++ b/src/main/java/org/bukkit/block/Block.java
|
|
@@ -665,6 +665,20 @@ public interface Block extends Metadatable, net.kyori.adventure.translation.Tran
|
|
@NotNull
|
|
Collection<ItemStack> getDrops(@NotNull ItemStack tool, @Nullable Entity entity);
|
|
|
|
+ // 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<ItemStack> 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.
|
|
*
|