From 4530b480cfccdffac20116d44bc204d165faae9b Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Thu, 9 Dec 2021 17:44:22 -0500 Subject: [PATCH] fix: use english item names --- Glamaholic/Ui/MainInterface.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Glamaholic/Ui/MainInterface.cs b/Glamaholic/Ui/MainInterface.cs index 04f7f48..5ee8812 100755 --- a/Glamaholic/Ui/MainInterface.cs +++ b/Glamaholic/Ui/MainInterface.cs @@ -62,7 +62,7 @@ namespace Glamaholic.Ui { this.Ui = ui; // get all equippable items that aren't soul crystals - this.Items = this.Ui.Plugin.DataManager.GetExcelSheet()! + this.Items = this.Ui.Plugin.DataManager.GetExcelSheet(ClientLanguage.English)! .Where(row => row.EquipSlotCategory.Row is not 0 && row.EquipSlotCategory.Value!.SoulCrystal == 0) .ToList(); this.FilteredItems = this.Items;