We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a408fc commit ccd87dfCopy full SHA for ccd87df
src/Classes/ImportTab.lua
@@ -716,10 +716,12 @@ function ImportTabClass:ImportItemsAndSkills(charData)
716
local group = { label = "", enabled = true, gemList = { } }
717
t_insert(group.gemList, gemInstance )
718
719
- for _, anotherSkillData in pairs(skillData.socketedItems) do
720
- local anotherGemInstance = funcGetGemInstance(anotherSkillData)
721
- if anotherGemInstance then
722
- t_insert(group.gemList, anotherGemInstance )
+ if skillData.socketedItems then
+ for _, anotherSkillData in pairs(skillData.socketedItems) do
+ local anotherGemInstance = funcGetGemInstance(anotherSkillData)
+ if anotherGemInstance then
723
+ t_insert(group.gemList, anotherGemInstance )
724
+ end
725
end
726
727
0 commit comments