Skip to content

Commit

Permalink
Merge branch 'master' into upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
Remuchi authored Oct 19, 2024
2 parents 526211b + b7ddc51 commit 404a6dd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Content.Shared/Localizations/ContentLocalizationManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ public void Initialize()
var fallbackCulture = new CultureInfo(FallbackCulture);

_loc.LoadCulture(culture);
_loc.LoadCulture(fallbackCulture);
if (_culture != FallbackCulture)
_loc.LoadCulture(fallbackCulture);
_loc.SetFallbackCluture(fallbackCulture);

_loc.AddFunction(culture, "PRESSURE", FormatPressure);
Expand Down

0 comments on commit 404a6dd

Please sign in to comment.