diff --git a/voxygen/src/scene/terrain.rs b/voxygen/src/scene/terrain.rs index 0cc78ca25e..647314c7d3 100644 --- a/voxygen/src/scene/terrain.rs +++ b/voxygen/src/scene/terrain.rs @@ -700,6 +700,17 @@ impl Terrain { }, ); } + + // TODO: Remesh all neighbours because we have complex lighting now + /*self.mesh_todo.insert( + neighbour_chunk_pos, + ChunkMeshState { + pos: chunk_pos + Vec2::new(x, y), + started_tick: current_tick, + active_worker: None, + }, + ); + */ } } }