diff --git a/src/main/java/me/jellysquid/mods/sodium/client/render/chunk/RenderSectionManager.java b/src/main/java/me/jellysquid/mods/sodium/client/render/chunk/RenderSectionManager.java index a3380f051b..fc105386b3 100644 --- a/src/main/java/me/jellysquid/mods/sodium/client/render/chunk/RenderSectionManager.java +++ b/src/main/java/me/jellysquid/mods/sodium/client/render/chunk/RenderSectionManager.java @@ -438,7 +438,7 @@ public void scheduleRebuild(int x, int y, int z, boolean important) { RenderSection section = this.sectionByPosition.get(ChunkSectionPos.asLong(x, y, z)); - if (section != null && section.isBuilt()) { + if (section != null) { ChunkUpdateType pendingUpdate; if (allowImportantRebuilds() && (important || this.shouldPrioritizeRebuild(section))) {