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-10-27 18:11:15 +01:00
|
|
|
index ce9369e730ba8862cd1e6e26f8825c35b16fcfb9..9d56e7d4185401767359907337d5891ff0058abb 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
|
2024-10-27 18:11:15 +01:00
|
|
|
@@ -4134,6 +4134,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
|
2024-10-23 19:46:06 +02:00
|
|
|
Consumable consumable = this.useItem.get(DataComponents.CONSUMABLE);
|
|
|
|
if (consumable != null) {
|