Paper/nms-patches/PathfinderGoalPanic.patch

16 lines
483 B
Diff
Raw Normal View History

2015-05-25 12:37:24 +02:00
--- a/net/minecraft/server/PathfinderGoalPanic.java
+++ b/net/minecraft/server/PathfinderGoalPanic.java
2016-11-17 02:41:03 +01:00
@@ -53,6 +53,12 @@
}
public boolean b() {
+ // CraftBukkit start - introduce a temporary timeout hack until this is fixed properly
2015-02-26 23:41:06 +01:00
+ if ((this.b.ticksLived - this.b.hurtTimestamp) > 100) {
+ this.b.b((EntityLiving) null);
+ return false;
+ }
+ // CraftBukkit end
2016-02-29 22:32:46 +01:00
return !this.b.getNavigation().n();
}
2016-02-29 22:32:46 +01:00