From 41bde1acc347df21ab3bc483a9a1c9176fb051a8 Mon Sep 17 00:00:00 2001 From: kuba6000 Date: Fri, 13 Sep 2024 22:01:27 +0200 Subject: [PATCH] Update Reliquarry.java --- .../java/com/kuba6000/mobsinfo/loader/extras/Reliquarry.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/kuba6000/mobsinfo/loader/extras/Reliquarry.java b/src/main/java/com/kuba6000/mobsinfo/loader/extras/Reliquarry.java index 1c01594..001276b 100644 --- a/src/main/java/com/kuba6000/mobsinfo/loader/extras/Reliquarry.java +++ b/src/main/java/com/kuba6000/mobsinfo/loader/extras/Reliquarry.java @@ -72,7 +72,9 @@ public void process(String k, ArrayList drops, MobRecipe recipe) { drops, XRRecipes.ingredient(Reference.STORM_INGREDIENT_META), Names.eye_of_the_storm); - drop.withChanceModifiers(new IChanceModifier.NormalChance(drop.chance * 0.01d)); + drop.withChanceModifiers( + new IChanceModifier.NormalChance(drop.chance * 0.01d), + new IChanceModifier.PoweredCreeper()); } else if (recipe.entity instanceof EntityEnderman) { addDrop(drops, XRRecipes.ingredient(Reference.ENDER_INGREDIENT_META), Names.ender_heart); } else if (recipe.entity instanceof EntityBat) {