2018-06-18 00:39:04 -04:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
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
2020-05-06 05:48:49 -04:00
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
2018-06-18 00:39:04 -04:00
--- a/src/main/java/org/bukkit/event/entity/EntityShootBowEvent.java
+++ b/src/main/java/org/bukkit/event/entity/EntityShootBowEvent.java
@@ -0,0 +0,0 @@ public class EntityShootBowEvent extends EntityEvent implements Cancellable {
private final float force;
2020-08-31 08:30:51 -04:00
private boolean consumeItem;
2018-06-18 00:39:04 -04:00
private boolean cancelled;
+ // Paper start
2020-08-31 08:30:51 -04:00
+ @Deprecated
2018-06-18 00:39:04 -04:00
+ public void setConsumeArrow(boolean consumeArrow) {
2020-08-31 08:30:51 -04:00
+ this.setConsumeItem(consumeArrow);
2018-06-18 00:39:04 -04:00
+ }
2020-08-31 08:30:51 -04:00
+
+ @Deprecated
2019-03-20 00:28:15 +00:00
+ public boolean getConsumeArrow() {
2020-08-31 08:30:51 -04:00
+ return this.shouldConsumeItem();
2019-03-20 00:28:15 +00:00
+ }
2020-08-31 08:30:51 -04:00
+
+ @NotNull @Deprecated
2018-06-18 00:39:04 -04:00
+ public ItemStack getArrowItem() {
2020-08-31 08:30:51 -04:00
+ return this.getConsumable();
2018-06-18 00:39:04 -04:00
+ }
+
+ @Deprecated
2020-08-31 08:30:51 -04:00
+ public EntityShootBowEvent(@NotNull final LivingEntity shooter, @Nullable final ItemStack bow, @NotNull final Entity projectile, final float force) {
2018-06-18 00:39:04 -04:00
+ this(shooter, bow, new ItemStack(org.bukkit.Material.AIR), projectile, force);
+ }
2020-08-31 08:30:51 -04:00
+ @Deprecated
2019-05-07 19:56:32 +01:00
+ public EntityShootBowEvent(@NotNull final LivingEntity shooter, @Nullable final ItemStack bow, @NotNull ItemStack arrowItem, @NotNull final Entity projectile, final float force) {
2020-08-31 08:30:51 -04:00
+ this(shooter, bow, arrowItem, projectile, EquipmentSlot.HAND, force, true);
+ }
+ // Paper end
public EntityShootBowEvent(@NotNull final LivingEntity shooter, @Nullable final ItemStack bow, @Nullable final ItemStack consumable, @NotNull final Entity projectile, @NotNull final EquipmentSlot hand, final float force, final boolean consumeItem) {
2018-06-18 00:39:04 -04:00
super(shooter);
this.bow = bow;