2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/item/enchantment/EnchantmentWeaponDamage.java
|
|
|
|
+++ b/net/minecraft/world/item/enchantment/EnchantmentWeaponDamage.java
|
2024-04-23 17:15:00 +02:00
|
|
|
@@ -35,7 +35,7 @@
|
|
|
|
if (this.targets.get() == TagsEntity.SENSITIVE_TO_BANE_OF_ARTHROPODS && i > 0 && entityliving1.getType().is((TagKey) this.targets.get())) {
|
2018-07-20 08:04:37 +02:00
|
|
|
int j = 20 + entityliving.getRandom().nextInt(10 * i);
|
|
|
|
|
2021-06-11 07:00:00 +02:00
|
|
|
- entityliving1.addEffect(new MobEffect(MobEffects.MOVEMENT_SLOWDOWN, j, 3));
|
|
|
|
+ entityliving1.addEffect(new MobEffect(MobEffects.MOVEMENT_SLOWDOWN, j, 3), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.ATTACK); // CraftBukkit
|
2018-07-20 08:04:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|