mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-02 13:07: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
62 lines
1.6 KiB
Diff
62 lines
1.6 KiB
Diff
From 3de2f2a6f5cb2f4170ad57b5d3e777eb01dcc498 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 2e98e4f9..8049b36c 100644
|
|
--- a/src/main/java/org/bukkit/entity/Item.java
|
|
+++ b/src/main/java/org/bukkit/entity/Item.java
|
|
@@ -2,6 +2,11 @@ package org.bukkit.entity;
|
|
|
|
import org.bukkit.inventory.ItemStack;
|
|
|
|
+// Paper start
|
|
+import javax.annotation.Nullable;
|
|
+import java.util.UUID;
|
|
+// Paper end
|
|
+
|
|
/**
|
|
* Represents an Item.
|
|
*/
|
|
@@ -49,5 +54,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.20.1
|
|
|