fix corrupted voxel reset

This commit is contained in:
MihailRis 2025-12-05 22:41:19 +03:00 committed by ShiftyX1
parent f5868b65f0
commit 43f54c38ec

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] = {};
}
}
}