summaryrefslogtreecommitdiffstats
path: root/nms-patches
diff options
context:
space:
mode:
authormd_5 <git@md-5.net>2017-06-26 11:21:38 +1000
committermd_5 <git@md-5.net>2017-06-26 11:21:38 +1000
commit0481ae963aad545b2f1162d764bcbff18721e2f0 (patch)
tree6813def5e0dda4d5a963de26d69b370ade952379 /nms-patches
parent9de5cb59a07a5539caf2a30073e4c734ad58019d (diff)
downloadcraftbukkit-0481ae963aad545b2f1162d764bcbff18721e2f0.tar
craftbukkit-0481ae963aad545b2f1162d764bcbff18721e2f0.tar.gz
craftbukkit-0481ae963aad545b2f1162d764bcbff18721e2f0.tar.lz
craftbukkit-0481ae963aad545b2f1162d764bcbff18721e2f0.tar.xz
craftbukkit-0481ae963aad545b2f1162d764bcbff18721e2f0.zip
SPIGOT-3382: Ensure players can pickup stuff
Diffstat (limited to 'nms-patches')
-rw-r--r--nms-patches/EntityPlayer.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/nms-patches/EntityPlayer.patch b/nms-patches/EntityPlayer.patch
index 9452567c..f68760f3 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
}