From 2b068778984f35a1967aded34250e517e68b2671 Mon Sep 17 00:00:00 2001 From: Shane Freeder <theboyetronic@gmail.com> Date: Mon, 11 Jan 2021 16:45:37 +0000 Subject: [PATCH] Fix debug stick update suppression (Fixes #5038) --- .../Do-not-perform-neighbour-updates-when-using-debug-st.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Spigot-Server-Patches/Do-not-perform-neighbour-updates-when-using-debug-st.patch b/Spigot-Server-Patches/Do-not-perform-neighbour-updates-when-using-debug-st.patch index 7669107e70..d5ef4a0c8b 100644 --- a/Spigot-Server-Patches/Do-not-perform-neighbour-updates-when-using-debug-st.patch +++ b/Spigot-Server-Patches/Do-not-perform-neighbour-updates-when-using-debug-st.patch @@ -41,7 +41,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 } - world.notifyAndUpdatePhysics(newblockposition, null, oldBlock, block, world.getType(newblockposition), updateFlag, 512); // send null chunk as chunk.k() returns false by this point -+ world.notifyAndUpdatePhysics(newblockposition, null, oldBlock, block, world.getType(newblockposition), updateFlag, 512 ^ (doPhysicsUpdate ? 0 : 16)); // send null chunk as chunk.k() returns false by this point // Paper ++ world.notifyAndUpdatePhysics(newblockposition, null, oldBlock, block, world.getType(newblockposition), updateFlag | (doPhysicsUpdate ? 0 : 16), 512); // send null chunk as chunk.k() returns false by this point // Paper } // Special case juke boxes as they update their tile entity. Copied from ItemRecord.