mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 18:27:41 +01:00
43702a9e10
By: md_5 <git@md-5.net>
12 lines
660 B
Diff
12 lines
660 B
Diff
--- a/net/minecraft/world/entity/monster/EntityZombieHusk.java
|
|
+++ b/net/minecraft/world/entity/monster/EntityZombieHusk.java
|
|
@@ -58,7 +58,7 @@
|
|
if (flag && this.getMainHandItem().isEmpty() && entity instanceof EntityLiving) {
|
|
float f = this.level.getCurrentDifficultyAt(this.blockPosition()).getEffectiveDifficulty();
|
|
|
|
- ((EntityLiving) entity).addEffect(new MobEffect(MobEffects.HUNGER, 140 * (int) f), this);
|
|
+ ((EntityLiving) entity).addEffect(new MobEffect(MobEffects.HUNGER, 140 * (int) f), this, org.bukkit.event.entity.EntityPotionEffectEvent.Cause.ATTACK); // CraftBukkit
|
|
}
|
|
|
|
return flag;
|