fix corrupted voxel reset

This commit is contained in:
MihailRis
2025-12-08 19:21:50 +03:00
committed by ShiftyX1
parent f5868b65f0
commit 43f54c38ec
+1 -1
View File
@@ -58,7 +58,7 @@ static void check_voxels(const ContentIndices& indices, Chunk& chunk) {
abort();
#endif
}
chunk.voxels[i].id = BLOCK_AIR;
chunk.voxels[i] = {};
}
}
}