Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ItemCatalogueUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,14 @@ internal void Update()
List<UIItemCatalogueItemSlot> slotsToUse = itemSlots;

if (SharedUI.instance.SelectedCategory.name == ArmorSetFeatureHelper.ArmorSetsInternalName) {
if (ArmorSetFeatureHelper.IsCalculating && !ArmorSetFeatureHelper.IsCalculationComplete) {
//still calculating
slowUpdateNeeded = 10; //check again in 10 frames
ArmorSetFeatureHelper.AppendSpecialUI(itemGrid);
itemGrid.UpdateOrder();
itemGrid._innerList.Recalculate();
return;
}
if (ArmorSetFeatureHelper.armorSetSlots == null)
ArmorSetFeatureHelper.CalculateArmorSets();
slotsToUse = ArmorSetFeatureHelper.armorSetSlots.Cast<UIItemCatalogueItemSlot>().ToList();
Expand Down
6 changes: 1 addition & 5 deletions Localization/de-DE.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,7 @@ Mods: {

UIArmorSetCatalogue: {
// TotalSetDefense: Total Set Defense: {0}
/* ArmorSets:
'''
Armor Sets
(Warning: May take many seconds to calculate)
''' */
// ArmorSets: Armor Sets
// ShowItems: Show Items
// ShowItemsTooltip: Display the items that make up the set
// UseDye: Use Dye
Expand Down
6 changes: 1 addition & 5 deletions Localization/en-US.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,7 @@ Mods: {

UIArmorSetCatalogue: {
TotalSetDefense: Total Set Defense: {0}
ArmorSets:
'''
Armor Sets
(Warning: May take many seconds to calculate)
'''
ArmorSets: Armor Sets
ShowItems: Show Items
ShowItemsTooltip: Display the items that make up the set
UseDye: Use Dye
Expand Down
6 changes: 1 addition & 5 deletions Localization/es-ES.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,7 @@ Mods: {

UIArmorSetCatalogue: {
// TotalSetDefense: Total Set Defense: {0}
/* ArmorSets:
'''
Armor Sets
(Warning: May take many seconds to calculate)
''' */
// ArmorSets: Armor Sets
// ShowItems: Show Items
// ShowItemsTooltip: Display the items that make up the set
// UseDye: Use Dye
Expand Down
6 changes: 1 addition & 5 deletions Localization/fr-FR.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -293,11 +293,7 @@ Mods: {

UIArmorSetCatalogue: {
// TotalSetDefense: Total Set Defense: {0}
/* ArmorSets:
'''
Armor Sets
(Warning: May take many seconds to calculate)
''' */
// ArmorSets: Armor Sets
// ShowItems: Show Items
// ShowItemsTooltip: Display the items that make up the set
// UseDye: Use Dye
Expand Down
6 changes: 1 addition & 5 deletions Localization/it-IT.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,7 @@ Mods: {

UIArmorSetCatalogue: {
// TotalSetDefense: Total Set Defense: {0}
/* ArmorSets:
'''
Armor Sets
(Warning: May take many seconds to calculate)
''' */
// ArmorSets: Armor Sets
// ShowItems: Show Items
// ShowItemsTooltip: Display the items that make up the set
// UseDye: Use Dye
Expand Down
6 changes: 1 addition & 5 deletions Localization/pl-PL.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,7 @@ Mods: {

UIArmorSetCatalogue: {
// TotalSetDefense: Total Set Defense: {0}
/* ArmorSets:
'''
Armor Sets
(Warning: May take many seconds to calculate)
''' */
// ArmorSets: Armor Sets
// ShowItems: Show Items
// ShowItemsTooltip: Display the items that make up the set
// UseDye: Use Dye
Expand Down
6 changes: 1 addition & 5 deletions Localization/pt-BR.hjson
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,7 @@ Mods: {

UIArmorSetCatalogue: {
// TotalSetDefense: Total Set Defense: {0}
/* ArmorSets:
'''
Armor Sets
(Warning: May take many seconds to calculate)
''' */
// ArmorSets: Armor Sets
// ShowItems: Show Items
// ShowItemsTooltip: Display the items that make up the set
// UseDye: Use Dye
Expand Down
Loading