Skip to content

Commit

Permalink
Update copper tool material parameters to more balanced one
Browse files Browse the repository at this point in the history
  • Loading branch information
xYundy committed Mar 10, 2024
1 parent 552b533 commit c276ca5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import java.util.function.Supplier;

public enum ModToolMaterial implements ToolMaterial {
COPPER_INGOT(ToolMaterials.STONE.getMiningLevel(), ToolMaterials.WOOD.getDurability(), ToolMaterials.IRON.getMiningSpeedMultiplier(), ToolMaterials.STONE.getAttackDamage(), ToolMaterials.STONE.getEnchantability(), () -> Ingredient.ofItems(Items.COPPER_INGOT));
COPPER_INGOT(ToolMaterials.STONE.getMiningLevel(), ToolMaterials.WOOD.getDurability(), ToolMaterials.IRON.getMiningSpeedMultiplier(), ToolMaterials.IRON.getAttackDamage(), ToolMaterials.STONE.getEnchantability(), () -> Ingredient.ofItems(Items.COPPER_INGOT));

private final int miningLevel;
private final int itemDurability;
Expand Down

0 comments on commit c276ca5

Please sign in to comment.