]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix ghost command error string (#33838)
authorlzk <124214523+lzk228@users.noreply.github.com>
Thu, 12 Dec 2024 16:18:53 +0000 (17:18 +0100)
committerGitHub <noreply@github.com>
Thu, 12 Dec 2024 16:18:53 +0000 (11:18 -0500)
Content.Server/Ghost/GhostCommand.cs

index 26163f6d4d99074d5c556d9ac90e1091dcbd144b..927f9c8082fc5ce30ef72b2d76cea42ef80bef24 100644 (file)
@@ -29,7 +29,7 @@ namespace Content.Server.Ghost
             if (!gameTicker.PlayerGameStatuses.TryGetValue(player.UserId, out var playerStatus) ||
                 playerStatus is not PlayerGameStatus.JoinedGame)
             {
-                shell.WriteLine("ghost-command-error-lobby");
+                shell.WriteLine(Loc.GetString("ghost-command-error-lobby"));
                 return;
             }