-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix PotionAPI ignores icon flag (#9864)
* fix PotionAPI ignores icon flag * also fix CraftPotionUtil#toBukkit * also CraftPotionUtil#fromBukkit * use CraftPotionUtil
- Loading branch information
Showing
2 changed files
with
43 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ From: kickash32 <[email protected]> | |
Date: Fri, 8 May 2020 00:49:18 -0400 | ||
Subject: [PATCH] Fix PotionEffect ignores icon flag | ||
|
||
Co-authored-by: Tamion <[email protected]> | ||
|
||
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java | ||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 | ||
|
@@ -13,7 +14,47 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 | |
@Override | ||
public boolean addPotionEffect(PotionEffect effect, boolean force) { | ||
- this.getHandle().addEffect(new MobEffectInstance(CraftPotionEffectType.bukkitToMinecraft(effect.getType()), effect.getDuration(), effect.getAmplifier(), effect.isAmbient(), effect.hasParticles()), EntityPotionEffectEvent.Cause.PLUGIN); | ||
+ this.getHandle().addEffect(new MobEffectInstance(CraftPotionEffectType.bukkitToMinecraft(effect.getType()), effect.getDuration(), effect.getAmplifier(), effect.isAmbient(), effect.hasParticles(), effect.hasIcon()), EntityPotionEffectEvent.Cause.PLUGIN); // Paper - Don't ignore icon | ||
+ this.getHandle().addEffect(CraftPotionUtil.fromBukkit(effect), EntityPotionEffectEvent.Cause.PLUGIN); // Paper - Don't ignore icon | ||
return true; | ||
} | ||
|
||
@@ -0,0 +0,0 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity { | ||
@Override | ||
public PotionEffect getPotionEffect(PotionEffectType type) { | ||
MobEffectInstance handle = this.getHandle().getEffect(CraftPotionEffectType.bukkitToMinecraft(type)); | ||
- return (handle == null) ? null : new PotionEffect(CraftPotionEffectType.minecraftToBukkit(handle.getEffect()), handle.getDuration(), handle.getAmplifier(), handle.isAmbient(), handle.isVisible()); | ||
+ return (handle == null) ? null : CraftPotionUtil.toBukkit(handle); // Paper | ||
} | ||
|
||
@Override | ||
@@ -0,0 +0,0 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity { | ||
public Collection<PotionEffect> getActivePotionEffects() { | ||
List<PotionEffect> effects = new ArrayList<PotionEffect>(); | ||
for (MobEffectInstance handle : this.getHandle().activeEffects.values()) { | ||
- effects.add(new PotionEffect(CraftPotionEffectType.minecraftToBukkit(handle.getEffect()), handle.getDuration(), handle.getAmplifier(), handle.isAmbient(), handle.isVisible())); | ||
+ effects.add(CraftPotionUtil.toBukkit(handle)); // Paper | ||
} | ||
return effects; | ||
} | ||
diff --git a/src/main/java/org/bukkit/craftbukkit/potion/CraftPotionUtil.java b/src/main/java/org/bukkit/craftbukkit/potion/CraftPotionUtil.java | ||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644 | ||
--- a/src/main/java/org/bukkit/craftbukkit/potion/CraftPotionUtil.java | ||
+++ b/src/main/java/org/bukkit/craftbukkit/potion/CraftPotionUtil.java | ||
@@ -0,0 +0,0 @@ public class CraftPotionUtil { | ||
|
||
public static MobEffectInstance fromBukkit(PotionEffect effect) { | ||
MobEffect type = CraftPotionEffectType.bukkitToMinecraft(effect.getType()); | ||
- return new MobEffectInstance(type, effect.getDuration(), effect.getAmplifier(), effect.isAmbient(), effect.hasParticles()); | ||
+ return new MobEffectInstance(type, effect.getDuration(), effect.getAmplifier(), effect.isAmbient(), effect.hasParticles(), effect.hasIcon()); // Paper | ||
} | ||
|
||
public static PotionEffect toBukkit(MobEffectInstance effect) { | ||
@@ -0,0 +0,0 @@ public class CraftPotionUtil { | ||
int duration = effect.getDuration(); | ||
boolean ambient = effect.isAmbient(); | ||
boolean particles = effect.isVisible(); | ||
- return new PotionEffect(type, duration, amp, ambient, particles); | ||
+ return new PotionEffect(type, duration, amp, ambient, particles, effect.showIcon()); // Paper | ||
} | ||
|
||
public static boolean equals(MobEffect mobEffect, PotionEffectType type) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters