From e873d7c3db9a7bbef5929439c34adcf183fd21aa Mon Sep 17 00:00:00 2001 From: Peechey <92683202+Peechey@users.noreply.github.com> Date: Thu, 16 Apr 2026 10:57:19 -0500 Subject: [PATCH] update gem colour indicator to only enabled gems --- src/Classes/SkillListControl.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Classes/SkillListControl.lua b/src/Classes/SkillListControl.lua index dddea6f9a9..c820ce6cd6 100644 --- a/src/Classes/SkillListControl.lua +++ b/src/Classes/SkillListControl.lua @@ -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"