diff --git a/src/Classes/GemSelectControl.lua b/src/Classes/GemSelectControl.lua index 552cff7bd6..342df20f12 100644 --- a/src/Classes/GemSelectControl.lua +++ b/src/Classes/GemSelectControl.lua @@ -109,7 +109,7 @@ function GemSelectClass:PopulateGemList() local characterLevel = self.skillsTab.build and self.skillsTab.build.characterLevel or 1 for gemId, gemData in pairs(self.skillsTab.build.data.gems) do - if not gemData.grantedEffect.fromItem and (self.sortGemsBy and gemData.tags[self.sortGemsBy] == true or not self.sortGemsBy) then + if not gemData.grantedEffect.hideFromGemList and (self.sortGemsBy and gemData.tags[self.sortGemsBy] == true or not self.sortGemsBy) then local levelRequirement = gemData.grantedEffect.levels[1].levelRequirement or 1 if characterLevel >= levelRequirement or not matchLevel then if self.imbuedSelect then diff --git a/src/Data/Skills/other.lua b/src/Data/Skills/other.lua index 064f013e23..b1620f6b68 100644 --- a/src/Data/Skills/other.lua +++ b/src/Data/Skills/other.lua @@ -1212,6 +1212,7 @@ skills["SupportDivineBlessing"] = { excludeSkillTypes = { SkillType.SummonsTotem, SkillType.InbuiltTrigger, }, statDescriptionScope = "gem_stat_descriptions", fromItem = true, + hideFromGemList = true, statMap = { ["support_aura_duration_base_buff_duration"] = { skill("auraDuration", nil), @@ -1385,6 +1386,7 @@ skills["SupportEarthbreaker"] = { excludeSkillTypes = { SkillType.InbuiltTrigger, }, statDescriptionScope = "gem_stat_descriptions", fromItem = true, + hideFromGemList = true, addFlags = { totem = true, }, diff --git a/src/Export/Skills/other.txt b/src/Export/Skills/other.txt index 2acab50fd9..602a0ab03d 100644 --- a/src/Export/Skills/other.txt +++ b/src/Export/Skills/other.txt @@ -390,6 +390,7 @@ local skills, mod, flag, skill = ... #skill SupportDivineBlessing fromItem = true, + hideFromGemList = true, statMap = { ["support_aura_duration_base_buff_duration"] = { skill("auraDuration", nil), @@ -416,6 +417,7 @@ local skills, mod, flag, skill = ... #skill SupportEarthbreaker fromItem = true, + hideFromGemList = true, addFlags = { totem = true, },