aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0554-Add-HiddenPotionEffect-API.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/server/0554-Add-HiddenPotionEffect-API.patch')
-rw-r--r--patches/server/0554-Add-HiddenPotionEffect-API.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/patches/server/0554-Add-HiddenPotionEffect-API.patch b/patches/server/0554-Add-HiddenPotionEffect-API.patch
new file mode 100644
index 0000000000..5f9960d071
--- /dev/null
+++ b/patches/server/0554-Add-HiddenPotionEffect-API.patch
@@ -0,0 +1,29 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Tamion <[email protected]>
+Date: Sun, 5 Nov 2023 09:51:28 +0100
+Subject: [PATCH] Add HiddenPotionEffect API
+
+== AT ==
+public net.minecraft.world.effect.MobEffectInstance hiddenEffect
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/potion/CraftPotionUtil.java b/src/main/java/org/bukkit/craftbukkit/potion/CraftPotionUtil.java
+index 844fb8c662a409670f631228f687d85c5436d3dd..e938255fcc5db0c289d3e132175a541187e4a748 100644
+--- a/src/main/java/org/bukkit/craftbukkit/potion/CraftPotionUtil.java
++++ b/src/main/java/org/bukkit/craftbukkit/potion/CraftPotionUtil.java
+@@ -73,6 +73,7 @@ public class CraftPotionUtil {
+
+ public static MobEffectInstance fromBukkit(PotionEffect effect) {
+ MobEffect type = CraftPotionEffectType.bukkitToMinecraft(effect.getType());
++ // Paper - Note: do not copy over the hidden effect, as this method is only used for applying to entities which we do not want to convert over.
+ return new MobEffectInstance(type, effect.getDuration(), effect.getAmplifier(), effect.isAmbient(), effect.hasParticles(), effect.hasIcon()); // Paper
+ }
+
+@@ -82,7 +83,7 @@ public class CraftPotionUtil {
+ int duration = effect.getDuration();
+ boolean ambient = effect.isAmbient();
+ boolean particles = effect.isVisible();
+- return new PotionEffect(type, duration, amp, ambient, particles, effect.showIcon()); // Paper
++ return new PotionEffect(type, duration, amp, ambient, particles, effect.showIcon(), effect.hiddenEffect == null ? null : toBukkit(effect.hiddenEffect)); // Paper
+ }
+
+ public static boolean equals(MobEffect mobEffect, PotionEffectType type) {