aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/unapplied/server/0429-Add-LivingEntity-clearActiveItem.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/unapplied/server/0429-Add-LivingEntity-clearActiveItem.patch')
-rw-r--r--patches/unapplied/server/0429-Add-LivingEntity-clearActiveItem.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/patches/unapplied/server/0429-Add-LivingEntity-clearActiveItem.patch b/patches/unapplied/server/0429-Add-LivingEntity-clearActiveItem.patch
new file mode 100644
index 0000000000..3c6621ccfa
--- /dev/null
+++ b/patches/unapplied/server/0429-Add-LivingEntity-clearActiveItem.patch
@@ -0,0 +1,24 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Anrza <[email protected]>
+Date: Wed, 15 Jul 2020 12:08:49 +0200
+Subject: [PATCH] Add LivingEntity#clearActiveItem
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
+index db15382f35464de43a2fe0a41aca070a8c834777..de41ee2cc1be6ef412ec15c79a65cbca653b35d3 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
+@@ -967,6 +967,13 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
+ return this.getHandle().getUseItem().asBukkitMirror();
+ }
+
++ // Paper start
++ @Override
++ public void clearActiveItem() {
++ getHandle().stopUsingItem();
++ }
++ // Paper end
++
+ @Override
+ public int getActiveItemRemainingTime() {
+ return this.getHandle().getUseItemRemainingTicks();