aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/api/0411-Add-method-to-remove-all-active-potion-effects.patch
blob: f9f5110086ccb2ba78672b489212f9a406580072 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 2dbb61df25967739c5a8308d6d89be20136816ba..12926d36a409448ce5aaae955968dbc89825a2c5 100644
--- a/src/main/java/org/bukkit/entity/LivingEntity.java
+++ b/src/main/java/org/bukkit/entity/LivingEntity.java
@@ -625,6 +625,15 @@ 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>