diff --git a/Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs b/Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs index 0ab4e089494..4c222f07651 100644 --- a/Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs +++ b/Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs @@ -50,8 +50,8 @@ private string GetLocalizedName(string displayName) var localizedName = Loc.GetString(locationKey); if (localizedName == locationKey) { - Logger.Fail($"Failed to find localization with ID: {locationKey}") - localizedName = displayName + Logger.Fail($"Failed to find localization with ID: {locationKey}"); + localizedName = displayName; } return localizedName; }