Skip to content

Commit 3030b9e

Browse files
committed
Fix imbued support dropdown showing legacy Awakened gems
1 parent bc9399c commit 3030b9e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Classes/GemSelectControl.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ function GemSelectClass:PopulateGemList()
109109
if characterLevel >= levelRequirement or not matchLevel then
110110
if self.imbuedSelect then
111111
-- Imbued dropdown only allows non-exceptional support gems.
112-
if gemData.grantedEffect.support and not gemData.tagString:match("Exceptional") then
112+
if gemData.grantedEffect.support and not gemData.tagString:match("Exceptional") and not gemData.grantedEffect.plusVersionOf then
113113
self.gems["Default:" .. gemId] = gemData
114114
end
115115
else

0 commit comments

Comments
 (0)