From d9e7c31b8a2ed921d0e1a6a3670ef5287a4bfca2 Mon Sep 17 00:00:00 2001 From: Chomp Date: Sun, 22 Jun 2025 11:33:40 +0100 Subject: [PATCH] Fixed inverted locale logic that forced eng locale --- Libraries/SPTarkov.Server.Core/Services/LocaleService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs b/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs index 1f3cfa19..98d2e8c8 100644 --- a/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs +++ b/Libraries/SPTarkov.Server.Core/Services/LocaleService.cs @@ -91,7 +91,7 @@ public class LocaleService( /// Locale e.g en/ge/cz/cn public string GetDesiredServerLocale() { - if (!string.IsNullOrEmpty(_chosenServerLocale)) + if (string.IsNullOrEmpty(_chosenServerLocale)) { _chosenServerLocale = string.Equals( _localeConfig.ServerLocale,