Skip to content

Commit

Permalink
Iterate properly...
Browse files Browse the repository at this point in the history
  • Loading branch information
ImUnicke committed Jul 24, 2024
1 parent dafeca4 commit 868c28f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/Refresh.lua
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ local function CacheAccountWideMiscQuests(accountWideData)
-- etc.

-- Account Unlocks
70941, -- Fishing Holes [DF Iskaaran Fishing]
74576, -- Restored Hakkari Bijou [Zul'Gurub]
76390, -- Inconvenience Fee [Naxxramas]

Expand Down Expand Up @@ -244,7 +243,7 @@ local function FixNonOneTimeQuests(accountWideData)
}) do
oneTimeQuests[questID] = nil;
end
for questID,_ in ipairs(app.AccountWideQuestsDB) do
for questID,_ in pairs(app.AccountWideQuestsDB) do
oneTimeQuests[questID] = nil;
end
end
Expand Down

0 comments on commit 868c28f

Please sign in to comment.