2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: kickash32 <kickash32@gmail.com>
|
|
|
|
Date: Mon, 19 Aug 2019 19:42:35 +0500
|
|
|
|
Subject: [PATCH] Prevent consuming the wrong itemstack
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/LivingEntity.java b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2024-01-16 19:27:39 +01:00
|
|
|
index 8e89eb11e8477c921b30840644b6c3ba9d18c3ef..a3eac4dfe28bc55721d292e2f309b3467a3db140 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-05 23:32:41 +01:00
|
|
|
@@ -3709,9 +3709,14 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
2021-11-24 06:44:21 +01:00
|
|
|
public void startUsingItem(InteractionHand hand) {
|
|
|
|
+ // Paper start - forwarder to method with forceUpdate parameter
|
|
|
|
+ this.startUsingItem(hand, false);
|
|
|
|
+ }
|
|
|
|
+ public void startUsingItem(InteractionHand hand, boolean forceUpdate) {
|
|
|
|
+ // Paper end
|
|
|
|
ItemStack itemstack = this.getItemInHand(hand);
|
2021-06-11 14:02:28 +02:00
|
|
|
|
|
|
|
- if (!itemstack.isEmpty() && !this.isUsingItem()) {
|
|
|
|
+ if (!itemstack.isEmpty() && !this.isUsingItem() || forceUpdate) { // Paper use override flag
|
|
|
|
this.useItem = itemstack;
|
|
|
|
this.useItemRemaining = itemstack.getUseDuration();
|
2023-06-07 23:14:56 +02:00
|
|
|
if (!this.level().isClientSide) {
|
2023-12-05 23:32:41 +01:00
|
|
|
@@ -3791,6 +3796,7 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2021-11-24 23:26:32 +01:00
|
|
|
this.releaseUsingItem();
|
|
|
|
} else {
|
|
|
|
if (!this.useItem.isEmpty() && this.isUsingItem()) {
|
2023-06-07 23:14:56 +02:00
|
|
|
+ this.startUsingItem(this.getUsedItemHand(), true); // Paper
|
2021-11-24 23:26:32 +01:00
|
|
|
this.triggerItemUseEffects(this.useItem, 16);
|
|
|
|
// CraftBukkit start - fire PlayerItemConsumeEvent
|
|
|
|
ItemStack itemstack;
|
2023-12-05 23:32:41 +01:00
|
|
|
@@ -3825,8 +3831,8 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2021-11-24 23:26:32 +01:00
|
|
|
}
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-11-24 23:26:32 +01:00
|
|
|
this.stopUsingItem();
|
2023-06-07 23:14:56 +02:00
|
|
|
- // Paper start - if the replacement is anything but the default, update the client inventory
|
|
|
|
- if (this instanceof ServerPlayer && !com.google.common.base.Objects.equal(defaultReplacement, itemstack)) {
|
|
|
|
+ // Paper start
|
|
|
|
+ if (this instanceof ServerPlayer) {
|
|
|
|
((ServerPlayer) this).getBukkitEntity().updateInventory();
|
|
|
|
}
|
|
|
|
// Paper end
|