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.