Skip to content
Merged
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
2 changes: 1 addition & 1 deletion src/Classes/SkillListControl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function SkillListClass:GetRowValue(column, index, socketGroup)
if not socketGroup.source then
local colorStr = ""
for _, gem in ipairs(socketGroup.gemList) do
if gem.gemData or gem.grantedEffect then
if (gem.gemData or gem.grantedEffect) and gem.enabled then
local grantedEffect = gem.grantedEffect or (gem.gemData and gem.gemData.grantedEffect)
if grantedEffect then
local char = grantedEffect.color == 1 and "R" or grantedEffect.color == 2 and "G" or grantedEffect.color == 3 and "B" or "W"
Expand Down
Loading