diff options
Diffstat (limited to 'patches/unapplied/server/1039-Allow-null-itemstack-for-Player-sendEquipmentChange.patch')
-rw-r--r-- | patches/unapplied/server/1039-Allow-null-itemstack-for-Player-sendEquipmentChange.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/unapplied/server/1039-Allow-null-itemstack-for-Player-sendEquipmentChange.patch b/patches/unapplied/server/1039-Allow-null-itemstack-for-Player-sendEquipmentChange.patch new file mode 100644 index 0000000000..39becf9031 --- /dev/null +++ b/patches/unapplied/server/1039-Allow-null-itemstack-for-Player-sendEquipmentChange.patch @@ -0,0 +1,19 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: David Scandurra <[email protected]> +Date: Wed, 25 Oct 2023 20:36:25 +0200 +Subject: [PATCH] Allow null itemstack for Player#sendEquipmentChange + + +diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java +index 64c3e4b0ce2cc111eedc2aa1ecf2c6c5d05f1e9d..3a792ddc31e76038b84e8f87088c4cd94c349138 100644 +--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java ++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java +@@ -1078,7 +1078,7 @@ public class CraftPlayer extends CraftHumanEntity implements Player { + + @Override + public void sendEquipmentChange(LivingEntity entity, EquipmentSlot slot, ItemStack item) { +- this.sendEquipmentChange(entity, Map.of(slot, item)); ++ this.sendEquipmentChange(entity, java.util.Collections.singletonMap(slot, item)); // Paper - replace Map.of to allow null values + } + + @Override |