geforkt von Mirrors/Paper
Fix SuspiciousStewMeta
Dieser Commit ist enthalten in:
Ursprung
9c126fd2a9
Commit
b561a12078
21
patches/server/1026-Fix-SuspiciousStewMeta.patch
Normale Datei
21
patches/server/1026-Fix-SuspiciousStewMeta.patch
Normale Datei
@ -0,0 +1,21 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Lulu13022002 <41980282+Lulu13022002@users.noreply.github.com>
|
||||
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 2966fa3eec7770f66c2adc61f0f47db584d017a2..1e4224b9a22bc04c2efdcbf9b560efc4d0dee1b3 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;
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren