diff --git a/src/game/player.rs b/src/game/player.rs index 4b313cf..85d46a4 100644 --- a/src/game/player.rs +++ b/src/game/player.rs @@ -23,7 +23,7 @@ impl FromWorld for PlayerSpawnOneshot { } } -pub(super) fn plyer_plugin(app: &mut App) { +pub(super) fn player_plugin(app: &mut App) { app.add_systems(OnEnter(AppState::InGame), add_player.in_set(IngameSet)) .init_resource::(); }