From 66986bd874f42e61f5275414e1d8bd9d9735afa4 Mon Sep 17 00:00:00 2001 From: CraftBukkit/Spigot Date: Tue, 16 Oct 2018 19:10:13 +0200 Subject: [PATCH] Fixed missed diff in PathfinderGoalPanic. Originally from the MC 1.8 update, broken afterwards and was no longer calling the correct method. By: blablubbabc --- paper-server/nms-patches/PathfinderGoalPanic.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paper-server/nms-patches/PathfinderGoalPanic.patch b/paper-server/nms-patches/PathfinderGoalPanic.patch index 0d5ec285fb..24babf0f04 100644 --- a/paper-server/nms-patches/PathfinderGoalPanic.patch +++ b/paper-server/nms-patches/PathfinderGoalPanic.patch @@ -6,7 +6,7 @@ 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); ++ this.a.a((EntityLiving) null); // PAIL setLastDamager + return false; + } + // CraftBukkit end