From e8be84a61a249b5bceddcc15c0f26de32920b7c9 Mon Sep 17 00:00:00 2001 From: Rinary Date: Thu, 25 Jul 2024 17:45:00 +0300 Subject: [PATCH] fix --- .../Systems/Ghost/Controls/GhostTargetWindow.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }