From fa0ad8f4945ce326c5c8ac65c3a35b6723ea89f9 Mon Sep 17 00:00:00 2001 From: Jake Potrebic Date: Sat, 17 Jun 2023 13:17:20 -0700 Subject: [PATCH] Add method to remove all active potion effects --- .../src/main/java/org/bukkit/entity/LivingEntity.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/paper-api/src/main/java/org/bukkit/entity/LivingEntity.java b/paper-api/src/main/java/org/bukkit/entity/LivingEntity.java index 8375ec85b7..7cc29c7a9e 100644 --- a/paper-api/src/main/java/org/bukkit/entity/LivingEntity.java +++ b/paper-api/src/main/java/org/bukkit/entity/LivingEntity.java @@ -657,6 +657,15 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource @NotNull public Collection getActivePotionEffects(); + // Paper start - LivingEntity#clearActivePotionEffects(); + /** + * Removes all active potion effects for this entity. + * + * @return true if any were removed + */ + boolean clearActivePotionEffects(); + // Paper end + /** * Checks whether the living entity has block line of sight to another. *