diff --git a/src/main/java/com/dreammaster/modcustomdrops/CustomDropsHandler.java b/src/main/java/com/dreammaster/modcustomdrops/CustomDropsHandler.java index 09232195f..2f8ff7dcc 100644 --- a/src/main/java/com/dreammaster/modcustomdrops/CustomDropsHandler.java +++ b/src/main/java/com/dreammaster/modcustomdrops/CustomDropsHandler.java @@ -236,8 +236,8 @@ public void provideExtraDropsInformation(@NotNull String entityString, @NotNull stack.stackSize = drop.getAmount(); } MobDrop mobDrop = MobDrop.create(stack).withChance(chance).withHardPlayerRestriction(); + mobDrop.clampChance(); if (drop.getLimitedDropCount() > 0) { - mobDrop.clampChance(); mobDrop.withChanceModifiers( new IChanceModifier.NormalChance(mobDrop.chance / 100d), new LimitedDropCountModifier(drop.getLimitedDropCount()));