Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
17b58d00d8
This was a useless exception wrapper that ends up making stack traces harder to read as well as the JVM cutting off the important parts Nothing catches this exception, so its safe to just get rid of it and let the REAL exception bubble down
35 Zeilen
1006 B
Diff
35 Zeilen
1006 B
Diff
From 717972d0fe8f0692924a0818c12d44f078ef63fc Mon Sep 17 00:00:00 2001
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
Date: Fri, 5 May 2017 03:57:08 -0500
|
|
Subject: [PATCH] Item#canEntityPickup
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Item.java b/src/main/java/org/bukkit/entity/Item.java
|
|
index 90260b7e..2e98e4f9 100644
|
|
--- a/src/main/java/org/bukkit/entity/Item.java
|
|
+++ b/src/main/java/org/bukkit/entity/Item.java
|
|
@@ -34,4 +34,20 @@ public interface Item extends Entity {
|
|
* @param delay New delay
|
|
*/
|
|
public void setPickupDelay(int delay);
|
|
+
|
|
+ // Paper Start
|
|
+ /**
|
|
+ * Gets if non-player entities can pick this Item up
|
|
+ *
|
|
+ * @return True if non-player entities can pickup
|
|
+ */
|
|
+ public boolean canMobPickup();
|
|
+
|
|
+ /**
|
|
+ * Sets if non-player entities can pick this Item up
|
|
+ *
|
|
+ * @param canMobPickup True to allow non-player entity pickup
|
|
+ */
|
|
+ public void setCanMobPickup(boolean canMobPickup);
|
|
+ // Paper end
|
|
}
|
|
--
|
|
2.20.1
|
|
|