geforkt von Mirrors/Paper
25 Zeilen
1.1 KiB
Diff
25 Zeilen
1.1 KiB
Diff
|
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
|
||
|
index 7880631fe8a4b06f29ef69ab850129737a99521b..19212795df4024cfb2b9f56e1efcd4c9f20d1d83 100644
|
||
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
||
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
||
|
@@ -490,6 +490,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 extends Projectile> T launchProjectile(Class<? extends T> projectile) {
|
||
|
return this.launchProjectile(projectile, null);
|