mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-29 11:42:55 +01:00
24557bc2b3
For more information please see http://www.spigotmc.org/
19 lines
935 B
Diff
19 lines
935 B
Diff
--- ../work/decompile-bb26c12b/net/minecraft/server/PathfinderGoalHurtByTarget.java 2014-11-27 08:59:46.829421283 +1100
|
|
+++ src/main/java/net/minecraft/server/PathfinderGoalHurtByTarget.java 2014-11-27 08:42:10.156850903 +1100
|
|
@@ -23,7 +23,7 @@
|
|
}
|
|
|
|
public void c() {
|
|
- this.e.setGoalTarget(this.e.getLastDamager());
|
|
+ this.e.setGoalTarget(this.e.getLastDamager(), org.bukkit.event.entity.EntityTargetEvent.TargetReason.TARGET_ATTACKED_NEARBY_ENTITY, true); // CraftBukkit - reason
|
|
this.b = this.e.bd();
|
|
if (this.a) {
|
|
double d0 = this.f();
|
|
@@ -58,6 +58,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
|
|
}
|
|
}
|