mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 02:42:14 +01:00
e4d10a6d67
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 122289ff Add FaceAttachable interface to handle Grindstone facing in common with Switches a6db750e SPIGOT-5647: ZombieVillager entity should have getVillagerType() CraftBukkit Changes:bbe3d58e
SPIGOT-5650: Lectern.setPage(int) causes a NullPointerException3075579f
Add FaceAttachable interface to handle Grindstone facing in common with Switches95bd4238
SPIGOT-5647: ZombieVillager entity should have getVillagerType()4d975ac3
SPIGOT-5617: setBlockData does not work when NotPlayEvent is called by redstone current
62 lines
1.7 KiB
Diff
62 lines
1.7 KiB
Diff
From b586a727562b147c4456f3b38170d037ef0090ef Mon Sep 17 00:00:00 2001
|
|
From: BillyGalbreath <Blake.Galbreath@GMail.com>
|
|
Date: Sat, 6 Oct 2018 20:54:13 -0500
|
|
Subject: [PATCH] Implement getters and setters for EntityItem owner and
|
|
thrower
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Item.java b/src/main/java/org/bukkit/entity/Item.java
|
|
index cb9e9f369..a15f70ff4 100644
|
|
--- a/src/main/java/org/bukkit/entity/Item.java
|
|
+++ b/src/main/java/org/bukkit/entity/Item.java
|
|
@@ -4,6 +4,10 @@ import org.bukkit.inventory.ItemStack;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
+// Paper start
|
|
+import java.util.UUID;
|
|
+// Paper end
|
|
+
|
|
/**
|
|
* Represents a dropped item.
|
|
*/
|
|
@@ -52,5 +56,35 @@ public interface Item extends Entity {
|
|
* @param canMobPickup True to allow non-player entity pickup
|
|
*/
|
|
public void setCanMobPickup(boolean canMobPickup);
|
|
+
|
|
+ /**
|
|
+ * The owner of this item. Only the owner can pick up the item until it is within 10 seconds of despawning
|
|
+ *
|
|
+ * @return The owner's UUID
|
|
+ */
|
|
+ @Nullable
|
|
+ public UUID getOwner();
|
|
+
|
|
+ /**
|
|
+ * Set the owner of this item. Only the owner can pick up the item until it is within 10 seconds of despawning
|
|
+ *
|
|
+ * @param owner The owner's UUID
|
|
+ */
|
|
+ public void setOwner(@Nullable UUID owner);
|
|
+
|
|
+ /**
|
|
+ * Get the thrower of this item.
|
|
+ *
|
|
+ * @return The thrower's UUID
|
|
+ */
|
|
+ @Nullable
|
|
+ public UUID getThrower();
|
|
+
|
|
+ /**
|
|
+ * Set the thrower of this item.
|
|
+ *
|
|
+ * @param thrower The thrower's UUID
|
|
+ */
|
|
+ public void setThrower(@Nullable UUID thrower);
|
|
// Paper end
|
|
}
|
|
--
|
|
2.25.1
|
|
|