From 1a0100b596d10461ab00c83a20270dc995017133 Mon Sep 17 00:00:00 2001 From: Schrottkatze Date: Sat, 23 Nov 2024 18:29:50 +0100 Subject: [PATCH] fix typo --- src/game/player.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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::(); }