summaryrefslogtreecommitdiffstats
path: root/nms-patches/EntityIronGolem.patch
blob: 6b9b2f87d3d9a3b9a85c88ec754fc0a342edca62 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- a/net/minecraft/server/EntityIronGolem.java
+++ b/net/minecraft/server/EntityIronGolem.java
@@ -72,7 +72,7 @@
 
     protected void C(Entity entity) {
         if (entity instanceof IMonster && !(entity instanceof EntityCreeper) && this.getRandom().nextInt(20) == 0) {
-            this.setGoalTarget((EntityLiving) entity);
+            this.setGoalTarget((EntityLiving) entity, org.bukkit.event.entity.EntityTargetLivingEntityEvent.TargetReason.COLLISION, true); // CraftBukkit - set reason
         }
 
         super.C(entity);