Skip to content

Commit

Permalink
Update Reliquarry.java
Browse files Browse the repository at this point in the history
  • Loading branch information
kuba6000 committed Sep 13, 2024
1 parent fe2fa3c commit 41bde1a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ public void process(String k, ArrayList<MobDrop> 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) {
Expand Down

0 comments on commit 41bde1a

Please sign in to comment.