mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
12 lines
586 B
Diff
12 lines
586 B
Diff
--- a/net/minecraft/server/EnchantmentWeaponDamage.java
|
|
+++ b/net/minecraft/server/EnchantmentWeaponDamage.java
|
|
@@ -46,7 +46,7 @@
|
|
if (this.a == 2 && entityliving1.getMonsterType() == EnumMonsterType.ARTHROPOD) {
|
|
int j = 20 + entityliving.getRandom().nextInt(10 * i);
|
|
|
|
- entityliving1.addEffect(new MobEffect(MobEffects.SLOWER_MOVEMENT, j, 3));
|
|
+ entityliving1.addEffect(new MobEffect(MobEffects.SLOWER_MOVEMENT, j, 3), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.ATTACK); // CraftBukkit
|
|
}
|
|
}
|
|
|