2020-01-22 03:02:07 +01:00
|
|
|
From a01ad1a56d67a680d5ad8f3fa3edbfbf104d00a0 Mon Sep 17 00:00:00 2001
|
2019-12-08 02:03:10 +01:00
|
|
|
From: Lukasz Derlatka <toranktto@gmail.com>
|
|
|
|
Date: Mon, 11 Nov 2019 16:08:13 +0100
|
|
|
|
Subject: [PATCH] Fix AssertionError when player hand set to empty type
|
|
|
|
|
|
|
|
Fixes an AssertionError when setting the player's item in hand to null or a new ItemStack of Air in PlayerInteractEvent
|
|
|
|
Fixes GH-2718
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityLiving.java b/src/main/java/net/minecraft/server/EntityLiving.java
|
2020-01-22 03:02:07 +01:00
|
|
|
index b098cd6d7..6184cced7 100644
|
2019-12-08 02:03:10 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityLiving.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityLiving.java
|
2020-01-22 03:02:07 +01:00
|
|
|
@@ -1888,6 +1888,7 @@ public abstract class EntityLiving extends Entity {
|
2019-12-08 02:03:10 +01:00
|
|
|
return this.getEquipment(EnumItemSlot.OFFHAND);
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public ItemStack getItemInHand(EnumHand enumhand) { return this.b(enumhand); } // Paper - OBFHELPER
|
|
|
|
public ItemStack b(EnumHand enumhand) {
|
|
|
|
if (enumhand == EnumHand.MAIN_HAND) {
|
|
|
|
return this.getEquipment(EnumItemSlot.MAINHAND);
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2020-01-22 03:02:07 +01:00
|
|
|
index f6fbba36f..a1ce2d2e0 100644
|
2019-12-08 02:03:10 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2019-12-12 17:20:43 +01:00
|
|
|
@@ -1429,6 +1429,10 @@ public class PlayerConnection implements PacketListenerPlayIn {
|
2019-12-08 02:03:10 +01:00
|
|
|
if (cancelled) {
|
|
|
|
this.player.getBukkitEntity().updateInventory(); // SPIGOT-2524
|
|
|
|
} else {
|
|
|
|
+ // Paper start
|
|
|
|
+ itemstack = this.player.getItemInHand(enumhand);
|
|
|
|
+ if (itemstack.isEmpty()) return;
|
|
|
|
+ // Paper end
|
|
|
|
this.player.playerInteractManager.a(this.player, worldserver, itemstack, enumhand);
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
--
|
2020-01-22 03:02:07 +01:00
|
|
|
2.25.0.windows.1
|
2019-12-08 02:03:10 +01:00
|
|
|
|