From 1ca1c1cbfde00deab21c5b73edbcc4df3cf59cec Mon Sep 17 00:00:00 2001 From: CraftBukkit/Spigot Date: Mon, 23 Jul 2018 10:43:45 +1000 Subject: [PATCH] SPIGOT-4109: Wall skulls not dropping By: md_5 --- paper-server/nms-patches/PlayerInteractManager.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paper-server/nms-patches/PlayerInteractManager.patch b/paper-server/nms-patches/PlayerInteractManager.patch index cfc3a711f00..c16937cd5f3 100644 --- a/paper-server/nms-patches/PlayerInteractManager.patch +++ b/paper-server/nms-patches/PlayerInteractManager.patch @@ -199,7 +199,7 @@ Block block = iblockdata.getBlock(); + // CraftBukkit start - Special case skulls, their item data comes from a tile entity (Also check if block should drop items) -+ if (iblockdata.getBlock() instanceof BlockSkull && !this.isCreative() && event.isDropItems()) { ++ if (iblockdata.getBlock() instanceof BlockSkullAbstract && !this.isCreative() && event.isDropItems()) { + iblockdata.getBlock().dropNaturally(iblockdata, world, blockposition, 1.0F, 0); + return this.c(blockposition); + }