Skip to content

Commit 41ff01a

Browse files
committed
fix exceptional support gem filtering
1 parent b439e04 commit 41ff01a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Classes/GemSelectControl.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ function GemSelectClass:FilterSupport(gemId, gemData)
144144
end
145145
return (not gemData.grantedEffect.support
146146
or showSupportTypes == "ALL"
147-
or (showSupportTypes == "NORMAL" and not gemData.grantedEffect.plusVersionOf)
148-
or (showSupportTypes == "EXCEPTIONAL" and gemData.grantedEffect.plusVersionOf))
147+
or (showSupportTypes == "NORMAL" and not (gemData.grantedEffect.plusVersionOf or gemData.tagString:match("Exceptional")))
148+
or (showSupportTypes == "EXCEPTIONAL" and (gemData.grantedEffect.plusVersionOf or gemData.tagString:match("Exceptional"))))
149149
and (self.skillsTab.showAltQualityGems or (not self.skillsTab.showAltQualityGems and self:GetQualityType(gemId) == "Default"))
150150
end
151151

0 commit comments

Comments
 (0)