From 4e0e8ec5c5312cc0f9e57a34bd4d6831a2244070 Mon Sep 17 00:00:00 2001 From: Aireil <33433913+Aireil@users.noreply.github.com> Date: Sun, 22 Nov 2020 11:15:07 +0100 Subject: [PATCH] Fix the xllanguage en command --- Dalamud/Dalamud.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Dalamud.cs b/Dalamud/Dalamud.cs index 04f1e8e95..f07e0cf7d 100644 --- a/Dalamud/Dalamud.cs +++ b/Dalamud/Dalamud.cs @@ -743,7 +743,7 @@ namespace Dalamud { 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.Configuration.LanguageOverride = arguments.ToLower();