mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-23 19:15:32 +01:00
SPIGOT-557: Fix incorrect target reason for attacking an entity
This commit is contained in:
parent
daa0ce3d65
commit
17a3db767a
@ -1,11 +1,11 @@
|
||||
--- ../work/decompile-8eb82bde//net/minecraft/server/PathfinderGoalHurtByTarget.java 2014-11-28 17:43:43.293707431 +0000
|
||||
+++ src/main/java/net/minecraft/server/PathfinderGoalHurtByTarget.java 2014-11-28 17:38:19.000000000 +0000
|
||||
--- ../work/decompile-8eb82bde//net/minecraft/server/PathfinderGoalHurtByTarget.java 2015-02-12 14:16:35.901294972 +0000
|
||||
+++ src/main/java/net/minecraft/server/PathfinderGoalHurtByTarget.java 2015-02-12 14:16:35.901294972 +0000
|
||||
@@ -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.e.setGoalTarget(this.e.getLastDamager(), org.bukkit.event.entity.EntityTargetEvent.TargetReason.TARGET_ATTACKED_ENTITY, true); // CraftBukkit - reason
|
||||
this.b = this.e.bd();
|
||||
if (this.a) {
|
||||
double d0 = this.f();
|
||||
|
Loading…
Reference in New Issue
Block a user