Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rinary1 committed Jul 25, 2024
1 parent 3f67d6a commit e8be84a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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}");

Check failure on line 53 in Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'Logger' does not contain a definition for 'Fail'

Check failure on line 53 in Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'Logger' does not contain a definition for 'Fail'

Check failure on line 53 in Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

'Logger' does not contain a definition for 'Fail'

Check failure on line 53 in Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs

View workflow job for this annotation

GitHub Actions / YAML Linter

'Logger' does not contain a definition for 'Fail'

Check failure on line 53 in Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'Logger' does not contain a definition for 'Fail'

Check failure on line 53 in Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest)

'Logger' does not contain a definition for 'Fail'

Check failure on line 53 in Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

'Logger' does not contain a definition for 'Fail'

Check failure on line 53 in Content.Client/UserInterface/Systems/Ghost/Controls/GhostTargetWindow.xaml.cs

View workflow job for this annotation

GitHub Actions / Test Packaging

'Logger' does not contain a definition for 'Fail'
localizedName = displayName;
}
return localizedName;
}
Expand Down

0 comments on commit e8be84a

Please sign in to comment.