summaryrefslogtreecommitdiffstats
path: root/nms-patches/TileEntityChest.patch
diff options
context:
space:
mode:
authorThinkofdeath <thinkofdeath@spigotmc.org>2015-05-05 21:43:47 +0100
committerThinkofdeath <thinkofdeath@spigotmc.org>2015-05-17 10:32:59 +0100
commita48660074969c52ed2547e02981d224b696f93e2 (patch)
treefac414d927c9edfae7b91ed7e698f294ff3b700b /nms-patches/TileEntityChest.patch
parent0a645a2726f031cc2d2c2a801574021283cf50ee (diff)
downloadcraftbukkit-a48660074969c52ed2547e02981d224b696f93e2.tar
craftbukkit-a48660074969c52ed2547e02981d224b696f93e2.tar.gz
craftbukkit-a48660074969c52ed2547e02981d224b696f93e2.tar.lz
craftbukkit-a48660074969c52ed2547e02981d224b696f93e2.tar.xz
craftbukkit-a48660074969c52ed2547e02981d224b696f93e2.zip
Update to 1.8.4
Diffstat (limited to 'nms-patches/TileEntityChest.patch')
-rw-r--r--nms-patches/TileEntityChest.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/nms-patches/TileEntityChest.patch b/nms-patches/TileEntityChest.patch
index ac339705..cd3b45aa 100644
--- a/nms-patches/TileEntityChest.patch
+++ b/nms-patches/TileEntityChest.patch
@@ -1,5 +1,5 @@
---- /home/matt/mc-dev-private//net/minecraft/server/TileEntityChest.java 2015-02-26 22:40:23.127608134 +0000
-+++ src/main/java/net/minecraft/server/TileEntityChest.java 2015-02-26 22:40:23.127608134 +0000
+--- /home/matt/mc-dev-private//net/minecraft/server/TileEntityChest.java 2015-05-05 21:41:21.308629312 +0100
++++ src/main/java/net/minecraft/server/TileEntityChest.java 2015-05-05 21:41:21.312629253 +0100
@@ -3,6 +3,11 @@
import java.util.Iterator;
import java.util.List;
@@ -82,7 +82,7 @@
@@ -315,8 +358,20 @@
public void closeContainer(EntityHuman entityhuman) {
- if (!entityhuman.v() && this.w() instanceof BlockChest) {
+ if (!entityhuman.isSpectator() && this.w() instanceof BlockChest) {
+ int oldPower = Math.max(0, Math.min(15, this.l)); // CraftBukkit - Get power before new viewer is added
--this.l;
+ if (this.world == null) return; // CraftBukkit