aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0951-Allow-null-itemstack-for-Player-sendEquipmentChange.patch
diff options
context:
space:
mode:
authormaxcom1 <[email protected]>2024-03-23 22:26:17 +0100
committerGitHub <[email protected]>2024-03-23 17:26:17 -0400
commitb6001403e9703cadaa6e8c8558e732b91c3c6d6e (patch)
treea8c57bbc334a8ad48d4ad2b43db335667b142bee /patches/server/0951-Allow-null-itemstack-for-Player-sendEquipmentChange.patch
parent9ec7dfcbc41c6e625de0050b6997160a75df9f44 (diff)
downloadPaper-b6001403e9703cadaa6e8c8558e732b91c3c6d6e.tar.gz
Paper-b6001403e9703cadaa6e8c8558e732b91c3c6d6e.zip
Add methods to change entity physics (#10334)
Diffstat (limited to 'patches/server/0951-Allow-null-itemstack-for-Player-sendEquipmentChange.patch')
-rw-r--r--patches/server/0951-Allow-null-itemstack-for-Player-sendEquipmentChange.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/patches/server/0951-Allow-null-itemstack-for-Player-sendEquipmentChange.patch b/patches/server/0951-Allow-null-itemstack-for-Player-sendEquipmentChange.patch
new file mode 100644
index 0000000000..72c810300c
--- /dev/null
+++ b/patches/server/0951-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 ff3db4efd2c10b3351453656937e88064267fb22..0b34a90d275534a84bea7d7d9cce08b41ea7a698 100644
+--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
++++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftPlayer.java
+@@ -1047,7 +1047,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