2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Ineusia <ineusia@yahoo.com>
|
|
|
|
Date: Mon, 26 Oct 2020 11:37:48 -0500
|
|
|
|
Subject: [PATCH] Add Destroy Speed API
|
|
|
|
|
|
|
|
Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/block/Block.java b/src/main/java/org/bukkit/block/Block.java
|
2021-09-30 19:42:44 +02:00
|
|
|
index 271ebba09fd9248717750e998668ae6fe013bacc..33fa378176d2a46e60de539246e5e13a34cb4bac 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/block/Block.java
|
|
|
|
+++ b/src/main/java/org/bukkit/block/Block.java
|
2021-09-30 19:42:44 +02:00
|
|
|
@@ -628,5 +628,29 @@ public interface Block extends Metadatable, net.kyori.adventure.translation.Tran
|
2021-06-11 14:02:28 +02:00
|
|
|
@NotNull
|
2021-08-14 06:11:12 +02:00
|
|
|
@Deprecated
|
2021-06-11 14:02:28 +02:00
|
|
|
String getTranslationKey();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the speed at which this block will be destroyed by a given {@link ItemStack}
|
|
|
|
+ *
|
|
|
|
+ * <p>Default value is 1.0</p>
|
|
|
|
+ *
|
|
|
|
+ * @param itemStack {@link ItemStack} used to mine this Block
|
|
|
|
+ * @return the speed that this Block will be mined by the given {@link ItemStack}
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ public default float getDestroySpeed(@NotNull ItemStack itemStack) {
|
|
|
|
+ return getDestroySpeed(itemStack, false);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets the speed at which this blook will be destroyed by a given {@link org.bukkit.inventory.ItemStack}
|
|
|
|
+ * <p>
|
|
|
|
+ * Default value is 1.0
|
|
|
|
+ * @param itemStack {@link org.bukkit.inventory.ItemStack} used to mine this Block
|
|
|
|
+ * @param considerEnchants true to look at enchants on the itemstack
|
|
|
|
+ * @return the speed that this Block will be mined by the given {@link org.bukkit.inventory.ItemStack}
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ float getDestroySpeed(@NotNull ItemStack itemStack, boolean considerEnchants);
|
|
|
|
// Paper end
|
|
|
|
}
|