Skip to content

Commit

Permalink
Nerf Raw Drops
Browse files Browse the repository at this point in the history
  • Loading branch information
Direwolf20-MC committed Mar 1, 2024
1 parent e35264a commit d7b787f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ protected void generate() {
this.applyExplosionDecay(
Registration.RawFerricoreOre.get(),
LootItem.lootTableItem(Registration.RawFerricore.get())
.apply(SetItemCountFunction.setCount(UniformGenerator.between(4.0F, 5.0F)))
.apply(SetItemCountFunction.setCount(UniformGenerator.between(3.0F, 4.0F)))
)
));
add(Registration.RawBlazegoldOre.get(), createSilkTouchDispatchTable(
Registration.RawBlazegoldOre.get(),
this.applyExplosionDecay(
Registration.RawBlazegoldOre.get(),
LootItem.lootTableItem(Registration.RawBlazegold.get())
.apply(SetItemCountFunction.setCount(UniformGenerator.between(4.0F, 5.0F)))
.apply(SetItemCountFunction.setCount(UniformGenerator.between(3.0F, 4.0F)))
)
));
}
Expand Down

0 comments on commit d7b787f

Please sign in to comment.