From 4e3d8a41ee95c699acb5ab2109fdaab09f12d70e Mon Sep 17 00:00:00 2001 From: Aikar Date: Thu, 12 May 2016 08:55:35 -0400 Subject: [PATCH] Fix T/TE removal list bug Thanks @Cat6363 --- .../Change-implementation-of-tile-entity-removal-list.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Spigot-Server-Patches/Change-implementation-of-tile-entity-removal-list.patch b/Spigot-Server-Patches/Change-implementation-of-tile-entity-removal-list.patch index caf1e42247..ba7bb1710c 100644 --- a/Spigot-Server-Patches/Change-implementation-of-tile-entity-removal-list.patch +++ b/Spigot-Server-Patches/Change-implementation-of-tile-entity-removal-list.patch @@ -66,8 +66,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 - j = entity.ad; - if (entity.aa && this.isChunkLoaded(k, j, true)) { - this.getChunkAt(k, j).b(entity); -+ if (e.aa && this.isChunkLoaded(k, j, true)) { -+ this.getChunkAt(k, j).b(e); ++ if (e.aa && this.isChunkLoaded(j, k, true)) { ++ this.getChunkAt(j, k).b(e); } }