diff --git a/voxygen/src/scene/terrain.rs b/voxygen/src/scene/terrain.rs index 2a53e879b9..daf0c29327 100644 --- a/voxygen/src/scene/terrain.rs +++ b/voxygen/src/scene/terrain.rs @@ -157,8 +157,7 @@ impl Terrain { // Queue the worker thread client.thread_pool().execute(move || { - send.send(mesh_worker(pos, current_tick, volume, aabb)) - .expect("Failed to send chunk mesh to main thread"); + let _ = send.send(mesh_worker(pos, current_tick, volume, aabb)); }); todo.active_worker = true; }