2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: William Blake Galbreath <Blake.Galbreath@GMail.com>
|
|
|
|
Date: Thu, 2 Jan 2020 12:25:16 -0600
|
|
|
|
Subject: [PATCH] Add effect to block break naturally
|
|
|
|
|
|
|
|
|
|
|
|
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 5ac36e0f90d0889853736390877aa92ec0ca181b..25294bd8c4faa05af1429d934c5666742e3ee23c 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
|
|
|
@@ -470,6 +470,26 @@ public interface Block extends Metadatable {
|
2021-06-11 14:02:28 +02:00
|
|
|
*/
|
|
|
|
boolean breakNaturally(@Nullable ItemStack tool);
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
2021-09-30 19:42:44 +02:00
|
|
|
+ * Breaks the block and spawns item drops as if a player had broken it
|
|
|
|
+ *
|
|
|
|
+ * @param triggerEffect Play the block break particle effect and sound
|
|
|
|
+ * @return true if the block was destroyed
|
|
|
|
+ */
|
|
|
|
+ boolean breakNaturally(boolean triggerEffect);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Breaks the block and spawns item drops as if a player had broken it
|
|
|
|
+ * with a specific tool
|
2021-06-11 14:02:28 +02:00
|
|
|
+ *
|
|
|
|
+ * @param tool The tool or item in hand used for digging
|
|
|
|
+ * @param triggerEffect Play the block break particle effect and sound
|
|
|
|
+ * @return true if the block was destroyed
|
|
|
|
+ */
|
|
|
|
+ boolean breakNaturally(@NotNull ItemStack tool, boolean triggerEffect);
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Simulate bone meal application to this block (if possible).
|
|
|
|
*
|