Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
boubou19 committed Sep 7, 2024
1 parent 7b6d363 commit b9ce91e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/detrav/items/tools/DetravProspector.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public int getBaseQuality() {
@Override
public float getMaxDurabilityMultiplier() {
double x = tier + 1;
return (float) (0.00625D + (1.25D / 6D) * Math.tanh(Math.pow(x, (x / 8D)) / 25D));
return (float) (0.00625D + (1.25D * x / 6D) * Math.tanh(Math.pow(x, (x / 8D)) / 25D));
}

public IIconContainer getIcon(boolean aIsToolHead, ItemStack aStack) {
Expand Down

0 comments on commit b9ce91e

Please sign in to comment.