Add knock back 1 to the elf's bow

This commit is contained in:
2021-12-12 23:46:50 +01:00
parent fdcbf027f9
commit bb7f49ed99

View File

@@ -49,7 +49,8 @@ public class ElfClass extends MineClassImpl {
Material.BOW, Material.BOW,
Arrays.asList( Arrays.asList(
new Pair<>(Enchantment.ARROW_INFINITE, 1), new Pair<>(Enchantment.ARROW_INFINITE, 1),
new Pair<>(Enchantment.ARROW_DAMAGE, 8)))) new Pair<>(Enchantment.ARROW_DAMAGE, 8),
new Pair<>(Enchantment.KNOCKBACK, 1))))
.collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue)); .collect(Collectors.toMap(Map.Entry::getKey, Map.Entry::getValue));
@Override @Override