diff --git a/src/Mooege/Core/MooNet/Authentication/VersionChecker.cs b/src/Mooege/Core/MooNet/Authentication/VersionChecker.cs index ea48c8e4..53ff1c16 100644 --- a/src/Mooege/Core/MooNet/Authentication/VersionChecker.cs +++ b/src/Mooege/Core/MooNet/Authentication/VersionChecker.cs @@ -72,21 +72,36 @@ public static bool Check(MooNetClient client, bnet.protocol.authentication.Logon case "esES": client.Locale = MooNetClient.ClientLocale.esES; break; + case "esMX": + client.Locale = MooNetClient.ClientLocale.esMX; + break; case "frFR": client.Locale = MooNetClient.ClientLocale.frFR; break; case "itIT": client.Locale = MooNetClient.ClientLocale.itIT; break; - case "krKR": - client.Locale = MooNetClient.ClientLocale.krKR; + case "koKR": + client.Locale = MooNetClient.ClientLocale.koKR; break; case "plPL": client.Locale = MooNetClient.ClientLocale.plPL; break; + case "ptPT": + client.Locale = MooNetClient.ClientLocale.ptPT; + break; case "ptBR": client.Locale = MooNetClient.ClientLocale.ptBR; break; + case "ruRU": + client.Locale = MooNetClient.ClientLocale.ruRU; + break; + case "trTR": + client.Locale = MooNetClient.ClientLocale.trTR; + break; + case "zhCN": + client.Locale = MooNetClient.ClientLocale.zhCN; + break; case "zhTW": client.Locale = MooNetClient.ClientLocale.zhTW; break; diff --git a/src/Mooege/Net/MooNet/MooNetClient.cs b/src/Mooege/Net/MooNet/MooNetClient.cs index 4681b5a4..6c345546 100644 --- a/src/Mooege/Net/MooNet/MooNetClient.cs +++ b/src/Mooege/Net/MooNet/MooNetClient.cs @@ -493,15 +493,15 @@ public enum ClientLocale /// deDE, /// - /// EU. + /// English (EU) /// enGB, /// - /// Singapure. + /// English (Singapore) /// enSG, /// - /// US + /// English (US) /// enUS, /// @@ -509,6 +509,10 @@ public enum ClientLocale /// esES, /// + /// Espanol (Mexico) + /// + esMX, + /// /// French /// frFR, @@ -519,7 +523,7 @@ public enum ClientLocale /// /// Korean /// - krKR, + koKR, /// /// Polish /// @@ -527,9 +531,25 @@ public enum ClientLocale /// /// Portuguese /// + ptPT, + /// + /// Portuguese (Brazil) + /// ptBR, /// - /// Taiwan + /// Russian + /// + ruRU, + /// + /// Turkish + /// + trTR, + /// + /// Chinese + /// + zhCN, + /// + /// Chinese (Taiwan) /// zhTW }