From 6624e6688cfc12ba35f76d9a882ed24ae1e27243 Mon Sep 17 00:00:00 2001 From: JRoy <10731363+JRoy@users.noreply.github.com> Date: Sat, 15 Jun 2024 20:10:53 -0400 Subject: [PATCH] Add support for 1.21 potions --- .../java/com/earth2me/essentials/Potions.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/Essentials/src/main/java/com/earth2me/essentials/Potions.java b/Essentials/src/main/java/com/earth2me/essentials/Potions.java index 21eb45ff4..c6b8ae4ae 100644 --- a/Essentials/src/main/java/com/earth2me/essentials/Potions.java +++ b/Essentials/src/main/java/com/earth2me/essentials/Potions.java @@ -144,6 +144,23 @@ public final class Potions { POTIONS.put("unluck", PotionEffectType.UNLUCK); } catch (final Throwable ignored) { } + + // 1.21 + try { + POTIONS.put("infested", PotionEffectType.INFESTED); + ALIASPOTIONS.put("silverfish", PotionEffectType.INFESTED); + + POTIONS.put("oozing", PotionEffectType.OOZING); + ALIASPOTIONS.put("ooze", PotionEffectType.OOZING); + + POTIONS.put("weaving", PotionEffectType.WEAVING); + ALIASPOTIONS.put("weave", PotionEffectType.WEAVING); + + POTIONS.put("windcharged", PotionEffectType.WIND_CHARGED); + ALIASPOTIONS.put("windcharge", PotionEffectType.WIND_CHARGED); + ALIASPOTIONS.put("wind", PotionEffectType.WIND_CHARGED); + } catch (final Throwable ignored) { + } } private Potions() {