Paper/nms-patches/EntityIronGolem.patch

21 lines
816 B
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/EntityIronGolem.java
+++ b/net/minecraft/server/EntityIronGolem.java
2015-02-26 23:41:06 +01:00
@@ -59,7 +59,7 @@
protected void s(Entity entity) {
2015-02-26 23:41:06 +01:00
if (entity instanceof IMonster && !(entity instanceof EntityCreeper) && this.bc().nextInt(20) == 0) {
- this.setGoalTarget((EntityLiving) entity);
+ this.setGoalTarget((EntityLiving) entity, org.bukkit.event.entity.EntityTargetLivingEntityEvent.TargetReason.COLLISION, true); // CraftBukkit - set reason
}
super.s(entity);
2015-02-26 23:41:06 +01:00
@@ -220,7 +220,7 @@
}
public boolean apply(Object object) {
- return this.a((EntityLiving) object);
+ return this.a((T) object); // CraftBukkit - fix decompiler error
}
};
}