From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Jake Potrebic Date: Sat, 17 Jun 2023 13:17:25 -0700 Subject: [PATCH] Add method to remove all active potion effects diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java index 6a4639a4584f3497661f8870d5722e300638e52a..030fd330b13197d752a2d4c48628b9efd2c2c776 100644 --- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java +++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java @@ -503,6 +503,13 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity { return effects; } + // Paper start - LivingEntity#clearActivePotionEffects(); + @Override + public boolean clearActivePotionEffects() { + return this.getHandle().removeAllEffects(EntityPotionEffectEvent.Cause.PLUGIN); + } + // Paper end + @Override public T launchProjectile(Class projectile) { return this.launchProjectile(projectile, null);