summaryrefslogtreecommitdiffstats
path: root/nms-patches/PathfinderGoalPanic.patch
blob: 41b58874efd457f912ac755b1512c23cd2292c11 (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
@@ -47,6 +47,12 @@
     }
 
     public boolean b() {
+        // CraftBukkit start - introduce a temporary timeout hack until this is fixed properly
+        if ((this.b.ticksLived - this.b.hurtTimestamp) > 100) {
+            this.b.b((EntityLiving) null);
+            return false;
+        }
+        // CraftBukkit end
         return !this.b.getNavigation().n();
     }