From 440fd4a717266f828019a52324c70705b18ba161 Mon Sep 17 00:00:00 2001 From: Elias Stepanik <40958815+eliasstepanik@users.noreply.github.com> Date: Sat, 14 Jun 2025 00:48:01 +0200 Subject: [PATCH] Fix mesh_chunk braces --- client/src/plugins/environment/systems/voxels/meshing.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/client/src/plugins/environment/systems/voxels/meshing.rs b/client/src/plugins/environment/systems/voxels/meshing.rs index da0dd86..9c929f3 100644 --- a/client/src/plugins/environment/systems/voxels/meshing.rs +++ b/client/src/plugins/environment/systems/voxels/meshing.rs @@ -419,7 +419,6 @@ pub(crate) fn mesh_chunk( } } } - } // Greedy merge the mask into maximal rectangles. for u0 in 0..N { @@ -428,8 +427,6 @@ pub(crate) fn mesh_chunk( continue; } let Some(tex_id) = mask[idx(u0, v0)] else { continue }; - continue; - } // Determine the rectangle width. let mut width = 1;