fix: use english item names

This commit is contained in:
Anna 2021-12-09 17:44:22 -05:00
parent dab3f5d02b
commit 74d027cea3
1 changed files with 1 additions and 1 deletions

View File

@ -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<Item>()!
this.Items = this.Ui.Plugin.DataManager.GetExcelSheet<Item>(ClientLanguage.English)!
.Where(row => row.EquipSlotCategory.Row is not 0 && row.EquipSlotCategory.Value!.SoulCrystal == 0)
.ToList();
this.FilteredItems = this.Items;