2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: chickeneer <emcchickeneer@gmail.com>
|
|
|
|
Date: Fri, 19 Mar 2021 00:33:15 -0500
|
|
|
|
Subject: [PATCH] Fix PlayerItemConsumeEvent cancelling properly
|
|
|
|
|
|
|
|
When the active item is not cleared, the item is still readied
|
|
|
|
for use and will repeatedly trigger the PlayerItemConsumeEvent
|
|
|
|
till their item is switched.
|
|
|
|
This patch clears the active item when the event is cancelled
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/LivingEntity.java b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2024-01-14 16:31:39 +01:00
|
|
|
index 51916ff6f45090cf5e2da6b12640c130533fc4d9..383c39ac381f9a86693abb7935b5b142b889d7be 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2023-12-06 04:00:14 +01:00
|
|
|
@@ -3859,6 +3859,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2023-06-08 03:13:54 +02:00
|
|
|
this.level().getCraftServer().getPluginManager().callEvent(event);
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-11-24 23:26:32 +01:00
|
|
|
if (event.isCancelled()) {
|
2023-06-08 03:13:54 +02:00
|
|
|
+ this.stopUsingItem(); // Paper - event is using an item, clear active item to reset its use
|
2021-11-24 23:26:32 +01:00
|
|
|
// Update client
|
|
|
|
((ServerPlayer) this).getBukkitEntity().updateInventory();
|
|
|
|
((ServerPlayer) this).getBukkitEntity().updateScaledHealth();
|