mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
16 lines
483 B
Diff
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.a.ticksLived - this.a.hurtTimestamp) > 100) {
|
|
+ this.a.b((EntityLiving) null);
|
|
+ return false;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
return !this.a.getNavigation().o();
|
|
}
|
|
|