Framework update

This commit is contained in:
Tercio Jose
2023-10-12 15:13:42 -03:00
parent ac21f315a3
commit da1e12c20f
7 changed files with 224 additions and 68 deletions
+3 -3
View File
@@ -1449,15 +1449,15 @@ function DF:GetSpellsForEncounterFromJournal (instanceEJID, encounterEJID)
if (sectionInfo) then
if (sectionInfo.spellID and type(sectionInfo.spellID) == "number" and sectionInfo.spellID ~= 0) then
table.insert(spellIDs, sectionInfo.spellID)
tinsert(spellIDs, sectionInfo.spellID)
end
local nextChild, nextSibling = sectionInfo.firstChildSectionID, sectionInfo.siblingSectionID
if (nextSibling) then
table.insert(nextID, nextSibling)
tinsert(nextID, nextSibling)
end
if (nextChild) then
table.insert(nextID, nextChild)
tinsert(nextID, nextChild)
end
else
break