Skip to content

Commit

Permalink
fix(avritia tools): reduce crystal pickaxe destroy speed from 10000F …
Browse files Browse the repository at this point in the history
…to 100F

The destroy speed of the CrystalPickaxeItem has been adjusted to be less
overpowered, going from an unrealistic 10000F down to a more reasonable 100F.
This change addresses balance concerns and ensures the tool's speed is more
in line with other high-end tools in the game.
  • Loading branch information
cnlimiter committed Jul 25, 2024
1 parent 8fb7bac commit db05257
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public int getEnchantmentValue(ItemStack stack) {

@Override
public float getDestroySpeed(@NotNull ItemStack stack, @NotNull BlockState state) {
return 10000F;
return 100F;
}

@Override
Expand Down

0 comments on commit db05257

Please sign in to comment.