summaryrefslogtreecommitdiffstats
path: root/nms-patches/PathfinderGoalTempt.patch
diff options
context:
space:
mode:
Diffstat (limited to 'nms-patches/PathfinderGoalTempt.patch')
-rw-r--r--nms-patches/PathfinderGoalTempt.patch17
1 files changed, 8 insertions, 9 deletions
diff --git a/nms-patches/PathfinderGoalTempt.patch b/nms-patches/PathfinderGoalTempt.patch
index df8f4dcb..e0574094 100644
--- a/nms-patches/PathfinderGoalTempt.patch
+++ b/nms-patches/PathfinderGoalTempt.patch
@@ -17,25 +17,24 @@
private double e;
private double f;
private double g;
-- private EntityHuman h;
-+ private EntityLiving h; // CraftBukkit
+- private EntityHuman target;
++ private EntityLiving target; // CraftBukkit
private int i;
private boolean j;
private final Set<Item> k;
-@@ -39,7 +45,18 @@
+@@ -39,7 +45,17 @@
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());
+ this.target = this.a.world.findNearbyPlayer(this.a, 10.0D);
+- return this.target == null ? false : this.a(this.target.getItemInMainHand()) || this.a(this.target.getItemInOffHand());
+ // CraftBukkit start
-+ // PAIL: rename
-+ boolean tempt = this.h == null ? false : this.a(this.h.getItemInMainHand()) || this.a(this.h.getItemInOffHand());
++ boolean tempt = this.target == null ? false : this.a(this.target.getItemInMainHand()) || this.a(this.target.getItemInOffHand());
+ if (tempt) {
-+ EntityTargetLivingEntityEvent event = CraftEventFactory.callEntityTargetLivingEvent(this.a, this.h, EntityTargetEvent.TargetReason.TEMPT);
++ EntityTargetLivingEntityEvent event = CraftEventFactory.callEntityTargetLivingEvent(this.a, this.target, EntityTargetEvent.TargetReason.TEMPT);
+ if (event.isCancelled()) {
+ return false;
+ }
-+ this.h = ((CraftLivingEntity) event.getTarget()).getHandle();
++ this.target = ((CraftLivingEntity) event.getTarget()).getHandle();
+ }
+ return tempt;
+ // CraftBukkit end