diff --git a/nms-patches/EntityLiving.patch b/nms-patches/EntityLiving.patch index c03c0470d2..2d5dbe3ed7 100644 --- a/nms-patches/EntityLiving.patch +++ b/nms-patches/EntityLiving.patch @@ -266,7 +266,8 @@ f *= 0.75F; } - boolean flag = false; +- boolean flag = false; ++ boolean flag = f > 0.0F && this.d(damagesource); // Copied from below - if (f > 0.0F && this.d(damagesource)) { + // CraftBukkit - Moved into damageEntity0(DamageSource, float)