mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
12 lines
522 B
Diff
12 lines
522 B
Diff
--- a/net/minecraft/server/EntitySkeletonWither.java
|
|
+++ b/net/minecraft/server/EntitySkeletonWither.java
|
|
@@ -74,7 +74,7 @@
|
|
return false;
|
|
} else {
|
|
if (entity instanceof EntityLiving) {
|
|
- ((EntityLiving) entity).addEffect(new MobEffect(MobEffects.WITHER, 200));
|
|
+ ((EntityLiving) entity).addEffect(new MobEffect(MobEffects.WITHER, 200), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.ATTACK); // CraftBukkit
|
|
}
|
|
|
|
return true;
|