Skip to content

Commit

Permalink
🔄 Synced local 'core.lua' with remote 'wow/core.lua'
Browse files Browse the repository at this point in the history
  • Loading branch information
N6REJ committed Dec 16, 2022
1 parent ba7fc96 commit 4fc7fb3
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,13 @@ for key, value in ipairs(addonTable.expansion) do
end
end

-- Now process global databases
for key, value in pairs(addonTable.Globaldbs) do
db = addonTable[value]
if (db ~= nil) then
AllFilters(db)
-- Check if globaldbs is being used in toc
if (addonTable.Globaldbs ~= nil) then
-- Now process global databases
for key, value in pairs(addonTable.Globaldbs) do
db = addonTable[value]
if (db ~= nil) then
AllFilters(db)
end
end
end

0 comments on commit 4fc7fb3

Please sign in to comment.