SPIGOT-5929: Angered zombified piglins do not inherit killed_by_player status

This commit is contained in:
md_5 2020-07-03 10:11:34 +10:00
parent 7f6b4f587c
commit 47abffa218
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -18,7 +18,22 @@
}); });
} }
@@ -132,7 +132,16 @@ @@ -117,7 +117,7 @@
}
@Override
- public void setGoalTarget(@Nullable EntityLiving entityliving) {
+ public boolean setGoalTarget(@Nullable EntityLiving entityliving, org.bukkit.event.entity.EntityTargetEvent.TargetReason reason, boolean fireEvent) { // CraftBukkit - signature
if (this.getGoalTarget() == null && entityliving != null) {
this.bv = EntityPigZombie.d.a(this.random);
this.bA = EntityPigZombie.bz.a(this.random);
@@ -127,12 +127,21 @@
this.e((EntityHuman) entityliving);
}
- super.setGoalTarget(entityliving);
+ return super.setGoalTarget(entityliving, reason, fireEvent); // CraftBukkit
}
@Override @Override
public void anger() { public void anger() {