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: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
|
2023-12-05 18:20:55 +01:00
|
|
|
index bd5e53372ce860924f5403dca6b0c45878a9e4d2..a599ed2795ba1baf2cbb465d1c7145580c27e1ea 100644
|
2023-06-18 06:10:13 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
|
2023-07-04 10:22:56 +02:00
|
|
|
@@ -589,6 +589,15 @@ public interface LivingEntity extends Attributable, Damageable, ProjectileSource
|
2023-06-18 06:10:13 +02:00
|
|
|
@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>
|