From 43f54c38ecd1118d6655522f9171ed381573e150 Mon Sep 17 00:00:00 2001 From: MihailRis Date: Fri, 5 Dec 2025 22:41:19 +0300 Subject: [PATCH] fix corrupted voxel reset --- src/voxels/GlobalChunks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/voxels/GlobalChunks.cpp b/src/voxels/GlobalChunks.cpp index e284fa07..cbde6f9c 100644 --- a/src/voxels/GlobalChunks.cpp +++ b/src/voxels/GlobalChunks.cpp @@ -58,7 +58,7 @@ static void check_voxels(const ContentIndices& indices, Chunk& chunk) { abort(); #endif } - chunk.voxels[i].id = BLOCK_AIR; + chunk.voxels[i] = {}; } } }