2023-06-19 00:33:15 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Owen1212055 <23108066+Owen1212055@users.noreply.github.com>
|
|
|
|
Date: Tue, 23 May 2023 22:33:36 -0400
|
2024-01-15 12:38:39 +01:00
|
|
|
Subject: [PATCH] Properly cancel usable items
|
2023-06-19 00:33:15 +02:00
|
|
|
|
|
|
|
This fixes the bug causing cancelling PlayerInteractEvent to cause items to continue to be used despite being cancelled on the server.
|
|
|
|
|
|
|
|
For example, items being consumed but never finishing, shields being put up, etc.
|
|
|
|
The underlying issue of this is that the client modifies their synced data values, and so we have to (forcibly) resend
|
|
|
|
them in order for the client to reset their using item state.
|
|
|
|
|
2023-07-13 21:48:46 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java b/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java
|
2024-01-19 17:54:05 +01:00
|
|
|
index 6c415090035fdbba6e0e3533aa2f1c3b401ab9ff..41c647c46585d454f3b10a860a2b6d979d1199a3 100644
|
2023-07-13 21:48:46 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/level/ServerPlayerGameMode.java
|
2023-12-03 04:41:35 +01:00
|
|
|
@@ -557,6 +557,7 @@ public class ServerPlayerGameMode {
|
2023-07-13 21:48:46 +02:00
|
|
|
}
|
|
|
|
// Paper end - extend Player Interact cancellation
|
|
|
|
player.getBukkitEntity().updateInventory(); // SPIGOT-2867
|
2024-01-15 12:38:39 +01:00
|
|
|
+ this.player.resyncUsingItem(this.player); // Paper - Properly cancel usable items
|
2023-07-13 21:48:46 +02:00
|
|
|
enuminteractionresult = (event.useItemInHand() != Event.Result.ALLOW) ? InteractionResult.SUCCESS : InteractionResult.PASS;
|
|
|
|
} else if (this.gameModeForPlayer == GameType.SPECTATOR) {
|
|
|
|
MenuProvider itileinventory = iblockdata.getMenuProvider(world, blockposition);
|
2023-12-03 04:41:35 +01:00
|
|
|
@@ -600,6 +601,11 @@ public class ServerPlayerGameMode {
|
2023-07-13 21:48:46 +02:00
|
|
|
|
|
|
|
return enuminteractionresult1;
|
|
|
|
}
|
2024-01-15 12:38:39 +01:00
|
|
|
+ // Paper start - Properly cancel usable items; Cancel only if cancelled + if the interact result is different from default response
|
2023-07-13 21:48:46 +02:00
|
|
|
+ else if (this.interactResult && this.interactResult != cancelledItem) {
|
|
|
|
+ this.player.resyncUsingItem(this.player);
|
|
|
|
+ }
|
2024-01-15 12:38:39 +01:00
|
|
|
+ // Paper end - Properly cancel usable items
|
2023-07-13 21:48:46 +02:00
|
|
|
}
|
|
|
|
return enuminteractionresult;
|
|
|
|
// CraftBukkit end
|
2023-06-19 00:33:15 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
2024-01-19 17:54:05 +01:00
|
|
|
index a6870c5f386905a4a2f4b884683aff7640649a50..ead7c202ba8ed11ee180767f3acaa003f60c2b28 100644
|
2023-06-19 00:33:15 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
|
2023-12-28 21:47:57 +01:00
|
|
|
@@ -1955,6 +1955,7 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
|
2023-06-19 00:33:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cancelled) {
|
2024-01-15 12:38:39 +01:00
|
|
|
+ this.player.resyncUsingItem(this.player); // Paper - Properly cancel usable items
|
2023-06-19 00:33:15 +02:00
|
|
|
this.player.getBukkitEntity().updateInventory(); // SPIGOT-2524
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/LivingEntity.java b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2024-01-19 17:54:05 +01:00
|
|
|
index 202819877d5920e8d0429a8c1bf06af4b9af950f..e9839d0dc8339ce62a6eb01c7094a2a3cf0fa816 100644
|
2023-06-19 00:33:15 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
2024-01-16 12:41:40 +01:00
|
|
|
@@ -3814,6 +3814,11 @@ public abstract class LivingEntity extends Entity implements Attackable {
|
2023-06-19 00:33:15 +02:00
|
|
|
return ((Byte) this.entityData.get(LivingEntity.DATA_LIVING_ENTITY_FLAGS) & 2) > 0 ? InteractionHand.OFF_HAND : InteractionHand.MAIN_HAND;
|
|
|
|
}
|
|
|
|
|
2024-01-15 12:38:39 +01:00
|
|
|
+ // Paper start - Properly cancel usable items
|
2023-06-19 00:33:15 +02:00
|
|
|
+ public void resyncUsingItem(ServerPlayer serverPlayer) {
|
|
|
|
+ this.getEntityData().resendPossiblyDesyncedDataValues(java.util.List.of(DATA_LIVING_ENTITY_FLAGS), serverPlayer);
|
|
|
|
+ }
|
2024-01-15 12:38:39 +01:00
|
|
|
+ // Paper end - Properly cancel usable items
|
2023-09-24 07:10:40 +02:00
|
|
|
private void updatingUsingItem() {
|
|
|
|
if (this.isUsingItem()) {
|
|
|
|
if (ItemStack.isSameItem(this.getItemInHand(this.getUsedItemHand()), this.useItem)) {
|