From 36817a561413422f1ebd950f2dcd11e4a738a462 Mon Sep 17 00:00:00 2001 From: CraftBukkit/Spigot Date: Sat, 25 May 2019 11:17:45 +1000 Subject: [PATCH] SPIGOT-4980: Shields will not be put on cooldown when hit with an axe By: md_5 --- paper-server/nms-patches/EntityLiving.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paper-server/nms-patches/EntityLiving.patch b/paper-server/nms-patches/EntityLiving.patch index 9763ca8f5..9492a98a9 100644 --- a/paper-server/nms-patches/EntityLiving.patch +++ b/paper-server/nms-patches/EntityLiving.patch @@ -670,7 +670,7 @@ + Entity entity = damagesource.j(); + + if (entity instanceof EntityLiving) { -+ this.c((EntityLiving) entity); ++ this.d((EntityLiving) entity); + } + }