mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 13:57:35 +01:00
Add method to remove all active potion effects (#9361)
* Add method to remove all active potion effects * use clear instead of removeAll
This commit is contained in:
parent
efe626d498
commit
fb0fd871fe
@ -0,0 +1,26 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
||||||
|
Date: Sat, 17 Jun 2023 13:17:20 -0700
|
||||||
|
Subject: [PATCH] Add method to remove all active potion effects
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/bukkit/entity/LivingEntity.java b/src/main/java/org/bukkit/entity/LivingEntity.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
||||||
|
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
||||||
|
@@ -0,0 +0,0 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
||||||
|
@NotNull
|
||||||
|
public Collection<PotionEffect> 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.
|
||||||
|
* <p>
|
@ -0,0 +1,24 @@
|
|||||||
|
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 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
||||||
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftLivingEntity.java
|
||||||
|
@@ -0,0 +0,0 @@ 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);
|
Loading…
Reference in New Issue
Block a user