2023-06-18 06:10:13 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
|
|
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
|
2024-12-03 22:06:05 +01:00
|
|
|
index cf388e227cd5893619ab5d05fee4a43c00ba0d9a..cbcd3563d1fda1038f9113da6ff88db9507a0f02 100644
|
2023-06-18 06:10:13 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
2024-10-24 00:42:38 +02:00
|
|
|
@@ -573,6 +573,13 @@ public class CraftLivingEntity extends CraftEntity implements LivingEntity {
|
2023-06-18 06:10:13 +02:00
|
|
|
return effects;
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - LivingEntity#clearActivePotionEffects();
|
|
|
|
+ @Override
|
|
|
|
+ public boolean clearActivePotionEffects() {
|
|
|
|
+ return this.getHandle().removeAllEffects(EntityPotionEffectEvent.Cause.PLUGIN);
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
@Override
|
|
|
|
public <T extends Projectile> T launchProjectile(Class<? extends T> projectile) {
|
|
|
|
return this.launchProjectile(projectile, null);
|