Paper/nms-patches/PathfinderGoalHurtByTarget.patch

20 lines
826 B
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/PathfinderGoalHurtByTarget.java
+++ b/net/minecraft/server/PathfinderGoalHurtByTarget.java
2016-02-29 22:32:46 +01:00
@@ -24,7 +24,7 @@
}
public void c() {
- this.e.setGoalTarget(this.e.getLastDamager());
+ this.e.setGoalTarget(this.e.getLastDamager(), org.bukkit.event.entity.EntityTargetEvent.TargetReason.TARGET_ATTACKED_ENTITY, true); // CraftBukkit - reason
2016-02-29 22:32:46 +01:00
this.g = this.e.getGoalTarget();
2016-05-10 13:47:39 +02:00
this.b = this.e.bI();
2016-02-29 22:32:46 +01:00
this.h = 300;
@@ -61,6 +61,6 @@
}
protected void a(EntityCreature entitycreature, EntityLiving entityliving) {
- entitycreature.setGoalTarget(entityliving);
+ entitycreature.setGoalTarget(entityliving, org.bukkit.event.entity.EntityTargetEvent.TargetReason.TARGET_ATTACKED_NEARBY_ENTITY, true); // CraftBukkit - reason
}
}