From 18322ec76f76852f3a899f4a66a2a0e1db8143a8 Mon Sep 17 00:00:00 2001 From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 12 Dec 2024 17:18:53 +0100 Subject: [PATCH] fix ghost command error string (#33838) --- Content.Server/Ghost/GhostCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Ghost/GhostCommand.cs b/Content.Server/Ghost/GhostCommand.cs index 26163f6d4d9907..927f9c8082fc5c 100644 --- a/Content.Server/Ghost/GhostCommand.cs +++ b/Content.Server/Ghost/GhostCommand.cs @@ -29,7 +29,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) 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; }