Skip to content

Commit

Permalink
PN-90 Fix #240 thorns and punch weights were incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
joserobjr committed May 10, 2020
1 parent 0b288d6 commit 756f4ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
public class EnchantmentThorns extends Enchantment {
protected EnchantmentThorns() {
super(ID_THORNS, "thorns", 2, EnchantmentType.ARMOR_TORSO);
super(ID_THORNS, "thorns", 1, EnchantmentType.ARMOR_TORSO);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/
public class EnchantmentBowKnockback extends EnchantmentBow {
public EnchantmentBowKnockback() {
super(Enchantment.ID_BOW_KNOCKBACK, "arrowKnockback", 2);
super(Enchantment.ID_BOW_KNOCKBACK, "arrowKnockback", 5);
}

@Override
Expand Down

0 comments on commit 756f4ce

Please sign in to comment.