mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Merge pull request #201 from Aireil/fix_xllanguage_command
Fix the xllanguage en command
This commit is contained in:
commit
c8e7ef6052
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue