aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0902-Allow-null-itemstack-for-Player-sendEquipmentChange.patch
diff options
context:
space:
mode:
authorJakub Zacek <[email protected]>2024-07-15 23:35:51 +0200
committerGitHub <[email protected]>2024-07-15 17:35:51 -0400
commit2cd8c461af74f0a524878dcdffba86cd105c48c6 (patch)
treeac107a76fe3d6cdd2e6ef5804ef3cba152957e4c /patches/server/0902-Allow-null-itemstack-for-Player-sendEquipmentChange.patch
parentb57b24d549c65ddc5eb3edcc1ecc6aad2826dbd8 (diff)
downloadPaper-2cd8c461af74f0a524878dcdffba86cd105c48c6.tar.gz
Paper-2cd8c461af74f0a524878dcdffba86cd105c48c6.zip
Add OMINOUS_ITEM_SPAWNER SpawnReason (#10897)
Diffstat (limited to 'patches/server/0902-Allow-null-itemstack-for-Player-sendEquipmentChange.patch')
-rw-r--r--patches/server/0902-Allow-null-itemstack-for-Player-sendEquipmentChange.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/0902-Allow-null-itemstack-for-Player-sendEquipmentChange.patch b/patches/server/0902-Allow-null-itemstack-for-Player-sendEquipmentChange.patch
new file mode 100644
index 0000000000..ef0d009597
--- /dev/null
+++ b/patches/server/0902-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 bababc918704a671ee4635ba0c79219d94474821..cb2cda2cb472b6ca0dd9b4fd1aea74ec3d215bbf 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
+@@ -1127,7 +1127,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