diff --git a/voxygen/src/scene/simple.rs b/voxygen/src/scene/simple.rs index 5766f1467b..faf4db3bb3 100644 --- a/voxygen/src/scene/simple.rs +++ b/voxygen/src/scene/simple.rs @@ -353,10 +353,6 @@ impl Scene { body: Option, inventory: Option<&Inventory>, ) { - // TODO: can probably be drawn last but it crashes when drawn first and we - // should figure that out - // drawer.draw_skybox(&self.skybox.model); - if let Some(body) = body { let model = &self.figure_model_cache.get_model( &self.col_lights, @@ -383,5 +379,7 @@ impl Scene { &self.col_lights.texture(model), ); } + + drawer.draw_skybox(&self.skybox.model); } }