From 30196b8696250107564391fcde703d7080768e39 Mon Sep 17 00:00:00 2001 From: CovertJaguar Date: Wed, 7 Jan 2015 15:37:54 -0800 Subject: [PATCH] Bulk Chunk Data packets should also check TileEntity.shouldRefresh(). --- patches/minecraft/net/minecraft/world/chunk/Chunk.java.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/minecraft/net/minecraft/world/chunk/Chunk.java.patch b/patches/minecraft/net/minecraft/world/chunk/Chunk.java.patch index 0b1700e5b..802517bd2 100644 --- a/patches/minecraft/net/minecraft/world/chunk/Chunk.java.patch +++ b/patches/minecraft/net/minecraft/world/chunk/Chunk.java.patch @@ -258,7 +258,7 @@ + int y = tileentity.field_145848_d; + int z = tileentity.field_145849_e & 15; + Block block = tileentity.func_145838_q(); -+ if (block != func_150810_a(x, y, z) || tileentity.field_145847_g != this.func_76628_c(x, y, z)) ++ if (tileentity.shouldRefresh(block, func_150810_a(x, y, z), tileentity.field_145847_g, this.func_76628_c(x, y, z), field_76637_e, x, y, z)) + { + invalidList.add(tileentity); + }