From 303d3f0f468acb920a2f3961aa2cbe59a2a1fc42 Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Thu, 2 Oct 2025 19:09:24 +1000 Subject: [PATCH] &types --- .../cortex/voxy/client/core/rendering/SectionUpdateRouter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/cortex/voxy/client/core/rendering/SectionUpdateRouter.java b/src/main/java/me/cortex/voxy/client/core/rendering/SectionUpdateRouter.java index 4aa56025..dd05474b 100644 --- a/src/main/java/me/cortex/voxy/client/core/rendering/SectionUpdateRouter.java +++ b/src/main/java/me/cortex/voxy/client/core/rendering/SectionUpdateRouter.java @@ -69,7 +69,7 @@ public class SectionUpdateRouter implements ISectionWatcher { } lock.unlock(stamp); } - if ((delta&UPDATE_TYPE_BLOCK_BIT)!=0) { + if (((delta&types)&UPDATE_TYPE_BLOCK_BIT)!=0) { //If we added it, immediately invoke for an update this.initialRenderMeshGen.accept(position); }