diff --git a/crates/border-wars/src/map/renderer.rs b/crates/border-wars/src/map/renderer.rs index d0979a7..5314995 100644 --- a/crates/border-wars/src/map/renderer.rs +++ b/crates/border-wars/src/map/renderer.rs @@ -16,7 +16,7 @@ pub struct RendererPlugin; impl Plugin for RendererPlugin { fn build(&self, app: &mut App) { - app.add_systems( + app.add_systems(Startup, init_resources_for_rendering).add_systems( Update, render_map.run_if(in_state(crate::CurrentScene::Game)), );