aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/1023-Fix-SuspiciousStewMeta.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/1023-Fix-SuspiciousStewMeta.patch')
-rw-r--r--patches/server/1023-Fix-SuspiciousStewMeta.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/patches/server/1023-Fix-SuspiciousStewMeta.patch b/patches/server/1023-Fix-SuspiciousStewMeta.patch
new file mode 100644
index 0000000000..834deff5db
--- /dev/null
+++ b/patches/server/1023-Fix-SuspiciousStewMeta.patch
@@ -0,0 +1,21 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Lulu13022002 <[email protected]>
+Date: Sat, 23 Sep 2023 16:36:54 +0200
+Subject: [PATCH] Fix SuspiciousStewMeta
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSuspiciousStew.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSuspiciousStew.java
+index df1df2ad759622b5b1355fae322cbc0333c932fb..bafc7215a3577c857fb7585f0d6dec54e1b95e90 100644
+--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSuspiciousStew.java
++++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSuspiciousStew.java
+@@ -20,8 +20,8 @@ import org.bukkit.potion.PotionEffectType;
+ @DelegateDeserialization(CraftMetaItem.SerializableMeta.class)
+ public class CraftMetaSuspiciousStew extends CraftMetaItem implements SuspiciousStewMeta {
+
+- static final ItemMetaKey DURATION = new ItemMetaKey("EffectDuration", "duration");
+- static final ItemMetaKey EFFECTS = new ItemMetaKey("Effects", "effects");
++ static final ItemMetaKey DURATION = new ItemMetaKey("duration", "duration"); // Paper
++ static final ItemMetaKey EFFECTS = new ItemMetaKey(net.minecraft.world.item.SuspiciousStewItem.EFFECTS_TAG, "effects"); // Paper
+ static final ItemMetaKey ID = new ItemMetaKey("id", "id");
+
+ private List<PotionEffect> customEffects;