2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Anrza <andrzejrzeczycki314@gmail.com>
|
|
|
|
Date: Wed, 15 Jul 2020 12:07:58 +0200
|
|
|
|
Subject: [PATCH] Add LivingEntity#clearActiveItem
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2024-02-09 21:56:13 +01:00
|
|
|
index 590d69f57722a40addf73131fa60e952f303230b..191a3c3ee46649d2a539597258485752b34fac02 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2024-02-09 21:56:13 +01:00
|
|
|
@@ -996,6 +996,13 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
2022-06-24 10:04:02 +02:00
|
|
|
@NotNull
|
|
|
|
org.bukkit.inventory.ItemStack getActiveItem();
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ /**
|
|
|
|
+ * Interrupts any ongoing active "usage" or consumption or an item.
|
|
|
|
+ */
|
|
|
|
+ void clearActiveItem();
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
/**
|
|
|
|
* Get's remaining time a player needs to keep hands raised with an item to finish using it.
|
|
|
|
* @return Remaining ticks to use the item
|