diff --git a/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs b/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs index 8caa85d3..bcaeb61d 100644 --- a/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs @@ -244,10 +244,7 @@ public class LocaleService( public void RemoveCustomClientLocale(string locale, string localeKey) { - if (customClientLocales.TryGetValue(locale, out var localeDict)) - { - localeDict.Remove(localeKey); - } + customClientLocales.Remove(localeKey); } private void AddToDictionary(string locale, string localeKey, string localeValue,