We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ca83d8 commit b18cda5Copy full SHA for b18cda5
1 file changed
src/Classes/SkillListControl.lua
@@ -89,7 +89,7 @@ function SkillListClass:GetRowValue(column, index, socketGroup)
89
if not socketGroup.source then
90
local colorStr = ""
91
for _, gem in ipairs(socketGroup.gemList) do
92
- if gem.gemData or gem.grantedEffect then
+ if (gem.gemData or gem.grantedEffect) and gem.enabled then
93
local grantedEffect = gem.grantedEffect or (gem.gemData and gem.gemData.grantedEffect)
94
if grantedEffect then
95
local char = grantedEffect.color == 1 and "R" or grantedEffect.color == 2 and "G" or grantedEffect.color == 3 and "B" or "W"
0 commit comments