Paper/Spigot-API-Patches/0035-Arrow-pickup-rule-API.patch

55 lines
1.6 KiB
Diff
Raw Normal View History

From 5f3ad3c3d105730323ea950c36892c1c548f4437 Mon Sep 17 00:00:00 2001
2016-04-22 07:07:16 +00:00
From: Jedediah Smith <jedediah@silencegreys.com>
Date: Fri, 4 Mar 2016 03:13:18 -0500
Subject: [PATCH] Arrow pickup rule API
diff --git a/src/main/java/org/bukkit/entity/Arrow.java b/src/main/java/org/bukkit/entity/Arrow.java
index 1ff09518..da4678d0 100644
2016-04-22 07:07:16 +00:00
--- a/src/main/java/org/bukkit/entity/Arrow.java
+++ b/src/main/java/org/bukkit/entity/Arrow.java
2017-01-20 11:21:44 +00:00
@@ -72,6 +72,40 @@ public interface Arrow extends Projectile {
CREATIVE_ONLY
}
2016-04-22 07:07:16 +00:00
+ // Paper start
+ /**
+ * Gets the {@link PickupRule} for this arrow.
+ *
+ * <p>This is generally {@link PickupRule#ALLOWED} only if the arrow was
+ * <b>not</b> fired from a bow with the infinity enchantment.</p>
+ *
+ * @return The pickup rule
2017-01-20 11:21:44 +00:00
+ * @deprecated Use {@link Arrow#getPickupStatus()} as an upstream compatible replacement for this function
2016-04-22 07:07:16 +00:00
+ */
2017-01-20 11:21:44 +00:00
+ @Deprecated
+ default PickupRule getPickupRule() {
+ return PickupRule.valueOf(this.getPickupStatus().name());
+ }
2016-04-22 07:07:16 +00:00
+
+ /**
+ * Set the rule for which players can pickup this arrow as an item.
+ *
+ * @param rule The pickup rule
2017-01-20 11:21:44 +00:00
+ * @deprecated Use {@link Arrow#setPickupStatus(PickupStatus)} with {@link PickupStatus} as an upstream compatible replacement for this function
2016-04-22 07:07:16 +00:00
+ */
2017-01-20 11:21:44 +00:00
+ @Deprecated
+ default void setPickupRule(PickupRule rule) {
+ this.setPickupStatus(PickupStatus.valueOf(rule.name()));
+ }
2016-04-22 07:07:16 +00:00
+
2017-01-20 11:21:44 +00:00
+ @Deprecated
2016-04-22 07:07:16 +00:00
+ enum PickupRule {
+ DISALLOWED,
+ ALLOWED,
+ CREATIVE_ONLY;
+ }
+ // Paper end
+
public class Spigot extends Entity.Spigot
{
--
2.12.2
2016-04-22 07:07:16 +00:00