diff options
Diffstat (limited to 'patches/server/0917-Allow-null-itemstack-for-Player-sendEquipmentChange.patch')
-rw-r--r-- | patches/server/0917-Allow-null-itemstack-for-Player-sendEquipmentChange.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/0917-Allow-null-itemstack-for-Player-sendEquipmentChange.patch b/patches/server/0917-Allow-null-itemstack-for-Player-sendEquipmentChange.patch new file mode 100644 index 0000000000..0f038d99ce --- /dev/null +++ b/patches/server/0917-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 027abbde974ff2c4844c3d815230d600140690a4..7fca299a92d330a46336c9fc88156d2ff18f3903 100644 +--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java ++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java +@@ -1125,7 +1125,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 |