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
3 changes: 3 additions & 0 deletions src/Classes/SkillsTab.lua
Original file line number Diff line number Diff line change
Expand Up @@ -982,6 +982,9 @@
end

function SkillsTabClass:ProcessGemLevel(gemData)
if not gemData then
return 1
end
local grantedEffect = gemData.grantedEffect
local naturalMaxLevel = gemData.naturalMaxLevel
if self.defaultGemLevel == "awakenedMaximum" then
Expand Down Expand Up @@ -1291,7 +1294,7 @@
end

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

Check warning on line 1297 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