aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0223-Add-Destroy-Speed-API.patch
diff options
context:
space:
mode:
authormaxcom1 <[email protected]>2024-03-23 22:26:17 +0100
committerGitHub <[email protected]>2024-03-23 17:26:17 -0400
commitb6001403e9703cadaa6e8c8558e732b91c3c6d6e (patch)
treea8c57bbc334a8ad48d4ad2b43db335667b142bee /patches/api/0223-Add-Destroy-Speed-API.patch
parent9ec7dfcbc41c6e625de0050b6997160a75df9f44 (diff)
downloadPaper-b6001403e9703cadaa6e8c8558e732b91c3c6d6e.tar.gz
Paper-b6001403e9703cadaa6e8c8558e732b91c3c6d6e.zip
Add methods to change entity physics (#10334)
Diffstat (limited to 'patches/api/0223-Add-Destroy-Speed-API.patch')
-rw-r--r--patches/api/0223-Add-Destroy-Speed-API.patch77
1 files changed, 77 insertions, 0 deletions
diff --git a/patches/api/0223-Add-Destroy-Speed-API.patch b/patches/api/0223-Add-Destroy-Speed-API.patch
new file mode 100644
index 0000000000..cdf304d00b
--- /dev/null
+++ b/patches/api/0223-Add-Destroy-Speed-API.patch
@@ -0,0 +1,77 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Ineusia <[email protected]>
+Date: Mon, 26 Oct 2020 11:37:48 -0500
+Subject: [PATCH] Add Destroy Speed API
+
+Co-authored-by: Jake Potrebic <[email protected]>
+
+diff --git a/src/main/java/org/bukkit/block/Block.java b/src/main/java/org/bukkit/block/Block.java
+index 1d3812db989a55b6f31bb30dffe70323eb592a15..4aea4be0677d93e17a4ce98dd340dd9921f996a0 100644
+--- a/src/main/java/org/bukkit/block/Block.java
++++ b/src/main/java/org/bukkit/block/Block.java
+@@ -690,4 +690,31 @@ public interface Block extends Metadatable, Translatable, net.kyori.adventure.tr
+ @Deprecated(forRemoval = true)
+ String getTranslationKey();
+ // Paper end
++
++ // Paper start - destroy speed API
++ /**
++ * Gets the speed at which this block will be destroyed by a given {@link ItemStack}
++ * <p>
++ * Default value is 1.0
++ *
++ * @param itemStack {@link ItemStack} used to mine this Block
++ * @return the speed that this Block will be mined by the given {@link ItemStack}
++ */
++ default float getDestroySpeed(final @NotNull ItemStack itemStack) {
++ return this.getBlockData().getDestroySpeed(itemStack);
++ }
++
++ /**
++ * Gets the speed at which this block will be destroyed by a given {@link ItemStack}
++ * <p>
++ * Default value is 1.0
++ *
++ * @param itemStack {@link 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 ItemStack}
++ */
++ default float getDestroySpeed(@NotNull ItemStack itemStack, boolean considerEnchants) {
++ return this.getBlockData().getDestroySpeed(itemStack, considerEnchants);
++ }
++ // Paper end - destroy speed API
+ }
+diff --git a/src/main/java/org/bukkit/block/data/BlockData.java b/src/main/java/org/bukkit/block/data/BlockData.java
+index cd3b3e05cc825cfedec07f9a2a1e0b7b2a8866d6..8a26e7215672f5fd4555fd455c9b1571488f0259 100644
+--- a/src/main/java/org/bukkit/block/data/BlockData.java
++++ b/src/main/java/org/bukkit/block/data/BlockData.java
+@@ -266,4 +266,29 @@ public interface BlockData extends Cloneable {
+ @NotNull
+ @ApiStatus.Experimental
+ BlockState createBlockState();
++
++ // Paper start - destroy speed API
++ /**
++ * Gets the speed at which this block will be destroyed by a given {@link ItemStack}
++ * <p>
++ * Default value is 1.0
++ *
++ * @param itemStack {@link ItemStack} used to mine this Block
++ * @return the speed that this Block will be mined by the given {@link ItemStack}
++ */
++ default float getDestroySpeed(final @NotNull ItemStack itemStack) {
++ return this.getDestroySpeed(itemStack, false);
++ }
++
++ /**
++ * Gets the speed at which this block will be destroyed by a given {@link ItemStack}
++ * <p>
++ * Default value is 1.0
++ *
++ * @param itemStack {@link 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 ItemStack}
++ */
++ float getDestroySpeed(@NotNull ItemStack itemStack, boolean considerEnchants);
++ // Paper end - destroy speed API
+ }