2019-03-20 01:28:15 +01:00
From 08658058b274e66ee6da649109aadb0c8094e4ce Mon Sep 17 00:00:00 2001
2018-06-18 06:39:04 +02:00
From: Aikar <aikar@aikar.co>
Date: Sat, 15 Jun 2013 19:52:04 -0400
Subject: [PATCH] EntityShootBowEvent consumeArrow and getArrowItem API
Adds ability to get what arrow was shot, and control if it should be consumed.
diff --git a/src/main/java/org/bukkit/event/entity/EntityShootBowEvent.java b/src/main/java/org/bukkit/event/entity/EntityShootBowEvent.java
2019-03-20 01:28:15 +01:00
index 57f6203d4..efde16174 100644
2018-06-18 06:39:04 +02:00
--- a/src/main/java/org/bukkit/event/entity/EntityShootBowEvent.java
+++ b/src/main/java/org/bukkit/event/entity/EntityShootBowEvent.java
2019-03-20 01:28:15 +01:00
@@ -18,9 +18,30 @@ public class EntityShootBowEvent extends EntityEvent implements Cancellable {
2018-06-18 06:39:04 +02:00
private Entity projectile;
private final float force;
private boolean cancelled;
+ // Paper start
+ private boolean consumeArrow = true;
+ private final ItemStack arrowItem;
+ public void setConsumeArrow(boolean consumeArrow) {
+ this.consumeArrow = consumeArrow;
+ }
2019-03-20 01:28:15 +01:00
+ public boolean getConsumeArrow() {
+ return consumeArrow;
+ }
2018-06-18 06:39:04 +02:00
2019-03-20 01:28:15 +01:00
+ @NotNull
2018-06-18 06:39:04 +02:00
+ public ItemStack getArrowItem() {
+ return arrowItem;
+ }
+
+ @Deprecated
2019-03-20 01:28:15 +01:00
public EntityShootBowEvent(@NotNull final LivingEntity shooter, @Nullable final ItemStack bow, @NotNull final Projectile projectile, final float force) {
2018-06-18 06:39:04 +02:00
+ this(shooter, bow, new ItemStack(org.bukkit.Material.AIR), projectile, force);
+ }
2019-03-20 01:28:15 +01:00
+
+ public EntityShootBowEvent(@NotNull final LivingEntity shooter, @Nullable final ItemStack bow, @NotNull ItemStack arrowItem, @NotNull final Projectile projectile, final float force) {
2018-06-18 06:39:04 +02:00
super(shooter);
+ this.arrowItem = arrowItem;
+ // Paper end
this.bow = bow;
this.projectile = projectile;
this.force = force;
--
2019-03-20 01:28:15 +01:00
2.21.0
2018-06-18 06:39:04 +02:00