Skip to content

Commit

Permalink
Buff electric wrenches speeds (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
htmlcsjs authored Dec 14, 2021
1 parent 8b118f8 commit 16da890
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/gregtech/common/tools/ToolElectricWrench.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ public float getBaseDamage(ItemStack stack) {
public float getDigSpeedMultiplier(ItemStack stack) {
switch (tier) {
case GTValues.LV: return 2.0F;
case GTValues.MV: return 3.0F;
case GTValues.HV: return 4.0F;
case GTValues.MV: return 4.0F;
case GTValues.HV: return 8.0F;
}
return super.getDigSpeedMultiplier(stack);
}
Expand Down

0 comments on commit 16da890

Please sign in to comment.