Paper/nms-patches/PathfinderGoalPanic.patch
2015-03-04 09:48:58 +00:00

16 lines
593 B
Diff

--- /home/matt/mc-dev-private//net/minecraft/server/PathfinderGoalPanic.java 2015-02-26 22:40:22.963608135 +0000
+++ src/main/java/net/minecraft/server/PathfinderGoalPanic.java 2015-02-26 22:40:22.967608135 +0000
@@ -36,6 +36,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().m();
}
}