From a7130c67fdeb16ca4cea25140995a64804c830fa Mon Sep 17 00:00:00 2001 From: CraftBukkit/Spigot Date: Mon, 26 Jun 2017 11:21:38 +1000 Subject: [PATCH] SPIGOT-3382: Ensure players can pickup stuff 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 9452567c2..f68760f36 100644 --- a/paper-server/nms-patches/EntityPlayer.patch +++ b/paper-server/nms-patches/EntityPlayer.patch @@ -55,7 +55,7 @@ + // CraftBukkit start + this.displayName = this.getName(); -+ // this.canPickUpLoot = true; TODO ++ this.canPickUpLoot = true; + this.maxHealthCache = this.getMaxHealth(); + // CraftBukkit end }