@@ -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
|
||||
|
||||
Reference in New Issue
Block a user