aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0921-Allow-null-itemstack-for-Player-sendEquipmentChange.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0921-Allow-null-itemstack-for-Player-sendEquipmentChange.patch')
-rw-r--r--patches/server/0921-Allow-null-itemstack-for-Player-sendEquipmentChange.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/0921-Allow-null-itemstack-for-Player-sendEquipmentChange.patch b/patches/server/0921-Allow-null-itemstack-for-Player-sendEquipmentChange.patch
new file mode 100644
index 0000000000..bb8021000e
--- /dev/null
+++ b/patches/server/0921-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 9c818bb1ea5c9dc8764845d5930d60503fc06f54..e582f9bad4173886905e33861da2493981bc7f4d 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