summaryrefslogtreecommitdiffstats
path: root/nms-patches/PathfinderGoalPanic.patch
blob: 9b0e4a6b4bc400227929b1db32688b5e2a747aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- a/net/minecraft/server/PathfinderGoalPanic.java
+++ b/net/minecraft/server/PathfinderGoalPanic.java
@@ -53,6 +53,12 @@
     }
 
     public boolean b() {
+        // CraftBukkit start - introduce a temporary timeout hack until this is fixed properly
+        if ((this.a.ticksLived - this.a.hurtTimestamp) > 100) {
+            this.a.setLastDamager((EntityLiving) null);
+            return false;
+        }
+        // CraftBukkit end
         return !this.a.getNavigation().p();
     }