2016-07-01 03:40:42 +02:00
|
|
|
--- a/net/minecraft/server/PathfinderGoalTempt.java
|
|
|
|
+++ b/net/minecraft/server/PathfinderGoalTempt.java
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -2,6 +2,12 @@
|
|
|
|
|
2016-07-01 03:40:42 +02:00
|
|
|
import com.google.common.collect.Sets;
|
|
|
|
import java.util.Set;
|
|
|
|
+// CraftBukkit start
|
|
|
|
+import org.bukkit.craftbukkit.entity.CraftLivingEntity;
|
|
|
|
+import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
+import org.bukkit.event.entity.EntityTargetEvent;
|
|
|
|
+import org.bukkit.event.entity.EntityTargetLivingEntityEvent;
|
|
|
|
+// CraftBukkit end
|
|
|
|
|
|
|
|
public class PathfinderGoalTempt extends PathfinderGoal {
|
|
|
|
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -12,7 +18,7 @@
|
2016-07-01 03:40:42 +02:00
|
|
|
private double e;
|
|
|
|
private double f;
|
|
|
|
private double g;
|
|
|
|
- private EntityHuman h;
|
|
|
|
+ private EntityLiving h; // CraftBukkit
|
|
|
|
private int i;
|
|
|
|
private boolean j;
|
|
|
|
private final Set<Item> k;
|
2016-11-17 02:41:03 +01:00
|
|
|
@@ -39,7 +45,18 @@
|
2016-07-01 03:40:42 +02:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
this.h = this.a.world.findNearbyPlayer(this.a, 10.0D);
|
|
|
|
- return this.h == null ? false : this.a(this.h.getItemInMainHand()) || this.a(this.h.getItemInOffHand());
|
|
|
|
+ // CraftBukkit start
|
|
|
|
+ // PAIL: rename
|
|
|
|
+ boolean tempt = this.h == null ? false : this.a(this.h.getItemInMainHand()) || this.a(this.h.getItemInOffHand());
|
|
|
|
+ if (tempt) {
|
|
|
|
+ EntityTargetLivingEntityEvent event = CraftEventFactory.callEntityTargetLivingEvent(this.a, this.h, EntityTargetEvent.TargetReason.TEMPT);
|
|
|
|
+ if (event.isCancelled()) {
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
|
|
+ this.h = ((CraftLivingEntity) event.getTarget()).getHandle();
|
|
|
|
+ }
|
|
|
|
+ return tempt;
|
|
|
|
+ // CraftBukkit end
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|