From 83783357379833a788cd8551eb0e999a493d45c8 Mon Sep 17 00:00:00 2001 From: md_5 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 --- nms-patches/EntityLiving.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nms-patches/EntityLiving.patch b/nms-patches/EntityLiving.patch index 9763ca8f50..9492a98a97 100644 --- a/nms-patches/EntityLiving.patch +++ b/nms-patches/EntityLiving.patch @@ -670,7 +670,7 @@ + Entity entity = damagesource.j(); + + if (entity instanceof EntityLiving) { -+ this.c((EntityLiving) entity); ++ this.d((EntityLiving) entity); + } + }