Paper/nms-patches/PathfinderGoalPanic.patch
2016-11-17 12:41:03 +11:00

16 lines
483 B
Diff

--- 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.b.ticksLived - this.b.hurtTimestamp) > 100) {
+ this.b.b((EntityLiving) null);
+ return false;
+ }
+ // CraftBukkit end
return !this.b.getNavigation().n();
}