Fix the xllanguage en command

This commit is contained in:
Aireil 2020-11-22 11:15:07 +01:00
parent 5f8db98e41
commit 4e0e8ec5c5

View file

@ -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();