2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2019-04-30 03:20:24 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Mon, 18 Jun 2018 01:12:53 -0400
|
|
|
|
Subject: [PATCH] PlayerReadyArrowEvent
|
|
|
|
|
|
|
|
Called when a player is firing a bow and the server is choosing an arrow to use.
|
|
|
|
Plugins can skip selection of certain arrows and control which is used.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityHuman.java b/src/main/java/net/minecraft/server/EntityHuman.java
|
2020-12-21 08:56:22 +01:00
|
|
|
index ac9a5559cff62f49735055afc45ceb75428c69e8..88a23d3e8f251304f22818b8c65590c39c42cd80 100644
|
2019-04-30 03:20:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityHuman.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityHuman.java
|
2020-12-21 08:56:22 +01:00
|
|
|
@@ -2051,6 +2051,17 @@ public abstract class EntityHuman extends EntityLiving {
|
2020-06-25 16:09:55 +02:00
|
|
|
return ImmutableList.of(EntityPose.STANDING, EntityPose.CROUCHING, EntityPose.SWIMMING);
|
2019-04-30 03:20:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ protected boolean tryReadyArrow(ItemStack bow, ItemStack itemstack) {
|
|
|
|
+ return !(this instanceof EntityPlayer) ||
|
|
|
|
+ new com.destroystokyo.paper.event.player.PlayerReadyArrowEvent(
|
|
|
|
+ ((EntityPlayer) this).getBukkitEntity(),
|
|
|
|
+ org.bukkit.craftbukkit.inventory.CraftItemStack.asCraftMirror(bow),
|
|
|
|
+ org.bukkit.craftbukkit.inventory.CraftItemStack.asCraftMirror(itemstack)
|
|
|
|
+ ).callEvent();
|
|
|
|
+ // Paper end
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
@Override
|
|
|
|
public ItemStack f(ItemStack itemstack) {
|
|
|
|
if (!(itemstack.getItem() instanceof ItemProjectileWeapon)) {
|
2020-12-21 08:56:22 +01:00
|
|
|
@@ -2067,7 +2078,7 @@ public abstract class EntityHuman extends EntityLiving {
|
2019-04-30 03:20:24 +02:00
|
|
|
for (int i = 0; i < this.inventory.getSize(); ++i) {
|
|
|
|
ItemStack itemstack2 = this.inventory.getItem(i);
|
|
|
|
|
|
|
|
- if (predicate.test(itemstack2)) {
|
|
|
|
+ if (predicate.test(itemstack2) && tryReadyArrow(itemstack, itemstack2)) { // Paper
|
|
|
|
return itemstack2;
|
|
|
|
}
|
|
|
|
}
|