From 0481ae963aad545b2f1162d764bcbff18721e2f0 Mon Sep 17 00:00:00 2001
From: md_5 <git@md-5.net>
Date: Mon, 26 Jun 2017 11:21:38 +1000
Subject: [PATCH] SPIGOT-3382: Ensure players can pickup stuff

---
 nms-patches/EntityPlayer.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nms-patches/EntityPlayer.patch b/nms-patches/EntityPlayer.patch
index 9452567c2f..f68760f361 100644
--- a/nms-patches/EntityPlayer.patch
+++ b/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
      }