From be94470a9f84d7c0c97b06ab60b4ca6a53b2052d Mon Sep 17 00:00:00 2001 From: CraftBukkit/Spigot Date: Fri, 17 Nov 2017 11:03:30 +1100 Subject: [PATCH] Fix mismatched setArrowCount method By: md_5 --- paper-server/nms-patches/EntityPlayer.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paper-server/nms-patches/EntityPlayer.patch b/paper-server/nms-patches/EntityPlayer.patch index 20d242d6cc..4081768d63 100644 --- a/paper-server/nms-patches/EntityPlayer.patch +++ b/paper-server/nms-patches/EntityPlayer.patch @@ -752,7 +752,7 @@ + this.expTotal = this.newTotalExp; + this.exp = 0; + this.deathTicks = 0; -+ this.f(0); // PAIL: setArrowCount ++ this.setArrowCount(0); + this.removeAllEffects(); + this.updateEffects = true; + this.activeContainer = this.defaultContainer;