mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-15 05:04:15 +01:00
Fix the xllanguage en command
This commit is contained in:
parent
5f8db98e41
commit
4e0e8ec5c5
1 changed files with 1 additions and 1 deletions
|
|
@ -743,7 +743,7 @@ namespace Dalamud {
|
||||||
|
|
||||||
private void OnSetLanguageCommand(string command, string arguments)
|
private void OnSetLanguageCommand(string command, string arguments)
|
||||||
{
|
{
|
||||||
if (Localization.ApplicableLangCodes.Contains(arguments.ToLower())) {
|
if (Localization.ApplicableLangCodes.Contains(arguments.ToLower()) || arguments.ToLower() == "en") {
|
||||||
this.LocalizationManager.SetupWithLangCode(arguments.ToLower());
|
this.LocalizationManager.SetupWithLangCode(arguments.ToLower());
|
||||||
this.Configuration.LanguageOverride = arguments.ToLower();
|
this.Configuration.LanguageOverride = arguments.ToLower();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue