mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
814c742554
Discussion ongoing in PR #449
12 lines
597 B
Diff
12 lines
597 B
Diff
--- a/net/minecraft/server/EntityZombieHusk.java
|
|
+++ b/net/minecraft/server/EntityZombieHusk.java
|
|
@@ -43,7 +43,7 @@
|
|
if (flag && this.getItemInMainHand().isEmpty() && entity instanceof EntityLiving) {
|
|
float f = this.world.getDamageScaler(new BlockPosition(this)).b();
|
|
|
|
- ((EntityLiving) entity).addEffect(new MobEffect(MobEffects.HUNGER, 140 * (int) f));
|
|
+ ((EntityLiving) entity).addEffect(new MobEffect(MobEffects.HUNGER, 140 * (int) f), org.bukkit.event.entity.EntityPotionEffectEvent.Cause.ATTACK); // CraftBukkit
|
|
}
|
|
|
|
return flag;
|