mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From 0000000000000000000000000000000000000000 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 65dd4554c6cc0801fcbc0ef6809b794dcebd1124..bfecd0633458586c0352eeb1a95bb57b12f9101e 100644
|
|
--- a/src/main/java/org/bukkit/entity/Item.java
|
|
+++ b/src/main/java/org/bukkit/entity/Item.java
|
|
@@ -89,4 +89,20 @@ public interface Item extends Entity {
|
|
*/
|
|
@Nullable
|
|
public UUID getThrower();
|
|
+
|
|
+ // 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
|
|
}
|