mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-03 06:40:19 +08:00
[Bleeding] Handle EntityHuman attack a bit more properly.
This commit is contained in:
parent
8ecfca47de
commit
fa6fd24f2a
@ -778,7 +778,7 @@ public abstract class EntityHuman extends EntityLiving {
|
||||
}
|
||||
|
||||
// CraftBukkit start - Don't call the event when the entity is human since it will be called with damageEntity
|
||||
if (entity instanceof EntityLiving && !(entity instanceof EntityHuman)) {
|
||||
if ((entity instanceof EntityLiving || entity instanceof EntityComplexPart) && !(entity instanceof EntityHuman)) {
|
||||
org.bukkit.entity.Entity damager = this.getBukkitEntity();
|
||||
org.bukkit.entity.Entity damagee = (entity == null) ? null : entity.getBukkitEntity();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user