diff --git a/voxygen/src/scene/terrain.rs b/voxygen/src/scene/terrain.rs index d01e5e52fa..de8e089805 100644 --- a/voxygen/src/scene/terrain.rs +++ b/voxygen/src/scene/terrain.rs @@ -602,16 +602,9 @@ impl Terrain { focus_pos: Vec3, ) { // Opaque - for (_, chunk) in &self.chunks { - if chunk.visible { - renderer.render_terrain_chunk(&chunk.opaque_model, globals, &chunk.locals, lights); - } - } - - // Translucent for (pos, chunk) in &self.chunks { if chunk.visible { - renderer.render_fluid_chunk(&chunk.fluid_model, globals, &chunk.locals, lights); + renderer.render_terrain_chunk(&chunk.opaque_model, globals, &chunk.locals, lights); const SPRITE_RENDER_DISTANCE: f32 = 128.0; @@ -632,5 +625,12 @@ impl Terrain { } } } + + // Translucent + for (_, chunk) in &self.chunks { + if chunk.visible { + renderer.render_fluid_chunk(&chunk.fluid_model, globals, &chunk.locals, lights); + } + } } }