mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
23 lines
925 B
Diff
23 lines
925 B
Diff
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
|
|
index c71bc11f7a0a72d4e5d609e333ab99031ea813d2..ac8d9e3238a4d47170ba8e79bc5f259cbfd3fa33 100644
|
|
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
|
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
|
@@ -1061,6 +1061,11 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
|
*/
|
|
org.bukkit.inventory.@NotNull ItemStack getActiveItem();
|
|
|
|
+ /**
|
|
+ * Interrupts any ongoing active "usage" or consumption or an item.
|
|
+ */
|
|
+ void clearActiveItem();
|
|
+
|
|
/**
|
|
* Gets the remaining number of ticks for {@link #getActiveItem()}'s usage.
|
|
*
|