From: lzk <124214523+lzk228@users.noreply.github.com> Date: Thu, 12 Dec 2024 16:18:53 +0000 (+0100) Subject: fix ghost command error string (#33838) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=18322ec76f76852f3a899f4a66a2a0e1db8143a8;p=space-station-14.git fix ghost command error string (#33838) --- diff --git a/Content.Server/Ghost/GhostCommand.cs b/Content.Server/Ghost/GhostCommand.cs index 26163f6d4d..927f9c8082 100644 --- a/Content.Server/Ghost/GhostCommand.cs +++ b/Content.Server/Ghost/GhostCommand.cs @@ -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; }