Skip to content
This repository was archived by the owner on Oct 21, 2025. It is now read-only.
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/SkillsTab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1037,7 +1037,7 @@
else
gemInstance.grantedEffect = data.skills[gemInstance.skillId]
end
if gemInstance.triggered then
if gemInstance.triggered and gemInstance.grantedEffect then
if gemInstance.grantedEffect.levels[gemInstance.level] then
gemInstance.grantedEffect.levels[gemInstance.level].cost = {}
end
Expand Down Expand Up @@ -1291,7 +1291,7 @@
end

-- Loop over all socket groups and gem instances
-- to udpated global gem count assignments

Check warning on line 1294 in src/Classes/SkillsTab.lua

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (udpated)
function SkillsTabClass:UpdateGlobalGemCountAssignments()
wipeTable(GlobalGemAssignments)
local countSocketGroups = 0
Expand Down
Loading