aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0208-Improve-Arrow-API.patch
blob: 1c70418e985706c473416dca70d7ae9f89988266 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Nesaak <52047222+Nesaak@users.noreply.github.com>
Date: Fri, 22 May 2020 13:35:21 -0400
Subject: [PATCH] Improve Arrow API

Add method to get the arrow's itemstack and a method
to set the arrow's "noclip" status

Co-authored-by: Jake Potrebic <jake.m.potrebic@gmail.com>

diff --git a/src/main/java/org/bukkit/entity/AbstractArrow.java b/src/main/java/org/bukkit/entity/AbstractArrow.java
index e8e56e89e32d84af0639fe2e9b0eeabd747b6007..225a24898acd25038ea2a8448f9f3b57643d3026 100644
--- a/src/main/java/org/bukkit/entity/AbstractArrow.java
+++ b/src/main/java/org/bukkit/entity/AbstractArrow.java
@@ -143,6 +143,28 @@ public interface AbstractArrow extends Projectile {
     }
 
     // Paper start
+    /**
+     * Gets the ItemStack for this arrow.
+     *
+     * @return The ItemStack, as if a player picked up the arrow
+     */
+    @NotNull
+    org.bukkit.inventory.ItemStack getItemStack();
+
+    /**
+     * Sets this arrow to "noclip" status.
+     *
+     * @param noPhysics true to set "noclip"
+     */
+    void setNoPhysics(boolean noPhysics);
+
+    /**
+     * Gets if this arrow has "noclip".
+     *
+     * @return true if noclip is active
+     */
+    boolean hasNoPhysics();
+
     /**
      * Gets the {@link PickupRule} for this arrow.
      *