Skip to content

Commit

Permalink
fix ghost command error string (space-wizards#33838)
Browse files Browse the repository at this point in the history
  • Loading branch information
lzk228 authored Dec 12, 2024
1 parent b959a64 commit 18322ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Ghost/GhostCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 18322ec

Please sign in to comment.