Fixed Wound Target

This commit is contained in:
Auxilor 2020-08-29 14:45:12 +01:00
parent 42b493f96d
commit cd41948dcd

View File

@ -21,7 +21,7 @@ import java.util.concurrent.atomic.AtomicInteger;
public class Wound extends EcoEnchant { public class Wound extends EcoEnchant {
public Wound() { public Wound() {
super( super(
new EcoEnchantBuilder("wound", EnchantmentType.NORMAL, Target.Applicable.SWORD, 4.0) new EcoEnchantBuilder("wound", EnchantmentType.NORMAL, new Target.Applicable[]{Target.Applicable.BOW, Target.Applicable.CROSSBOW}, 4.0)
); );
} }