mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Bugfix
This commit is contained in:
parent
c1a04fe5bf
commit
4cb95731bf
6 changed files with 82 additions and 14 deletions
|
|
@ -104,9 +104,9 @@ namespace MinecraftClient
|
|||
string gameLanguage = "en_gb";
|
||||
List<string> name = new();
|
||||
|
||||
string systemLanguage = string.IsNullOrWhiteSpace(CultureInfo.CurrentCulture.Name)
|
||||
? CultureInfo.CurrentCulture.Parent.Name
|
||||
: CultureInfo.CurrentCulture.Name;
|
||||
string systemLanguage = string.IsNullOrWhiteSpace(Program.ActualCulture.Name)
|
||||
? Program.ActualCulture.Parent.Name
|
||||
: Program.ActualCulture.Name;
|
||||
|
||||
switch (systemLanguage)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue