geforkt von Mirrors/Paper
90fe0d58a5
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 897a0a23 SPIGOT-5753: Back PotionType by a minecraft registry 255b2aa1 SPIGOT-7080: Add World#locateNearestBiome ff984826 Remove javadoc.io doc links CraftBukkit Changes: 71b0135cc SPIGOT-5753: Back PotionType by a minecraft registry a6bcb8489 SPIGOT-7080: Add World#locateNearestBiome ad0e57434 SPIGOT-7502: CraftMetaItem - cannot deserialize BlockStateTag b3efca57a SPIGOT-6400: Use Mockito instead of InvocationHandler 38c599f9d PR-1272: Only allow one entity in CraftItem instead of two f065271ac SPIGOT-7498: ChunkSnapshot.getBlockEmittedLight() gets 64 blocks upper in Overworld Spigot Changes: e0e223fe Remove javadoc.io doc links
22 Zeilen
1.3 KiB
Diff
22 Zeilen
1.3 KiB
Diff
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;
|