Merge pull request #230 from kashike/feature/arrow-pickup
Arrow pickup rule API
This commit is contained in:
commit
0cfd3c0dc6
2 changed files with 103 additions and 0 deletions
45
Spigot-API-Patches/0037-Arrow-pickup-rule-API.patch
Normal file
45
Spigot-API-Patches/0037-Arrow-pickup-rule-API.patch
Normal file
|
@ -0,0 +1,45 @@
|
|||
From 1d016100e49bc72ca46633c664e9d3632029ccda Mon Sep 17 00:00:00 2001
|
||||
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 e7a32f7..08095b9 100644
|
||||
--- a/src/main/java/org/bukkit/entity/Arrow.java
|
||||
+++ b/src/main/java/org/bukkit/entity/Arrow.java
|
||||
@@ -40,6 +40,31 @@ public interface Arrow extends Projectile {
|
||||
*/
|
||||
public void setCritical(boolean critical);
|
||||
|
||||
+ // 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
|
||||
+ */
|
||||
+ PickupRule getPickupRule();
|
||||
+
|
||||
+ /**
|
||||
+ * Set the rule for which players can pickup this arrow as an item.
|
||||
+ *
|
||||
+ * @param rule The pickup rule
|
||||
+ */
|
||||
+ void setPickupRule(PickupRule rule);
|
||||
+
|
||||
+ enum PickupRule {
|
||||
+ DISALLOWED,
|
||||
+ ALLOWED,
|
||||
+ CREATIVE_ONLY;
|
||||
+ }
|
||||
+ // Paper end
|
||||
+
|
||||
public class Spigot extends Entity.Spigot
|
||||
{
|
||||
|
||||
--
|
||||
2.7.4
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue