Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fxpw committed Mar 14, 2024
1 parent 46ad7a0 commit 74e91bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/Skins/Blizzard/Quest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ S:AddCallback("Skin_Quest", function()
for i = 1, MAX_NUM_ITEMS do
item = _G["QuestRequiredItem"..i]

if item and item ~= self then
if item then
name = _G["QuestRequiredItem"..i.."Name"]
link = item.hyperlink
local count = _G["QuestRequiredItem"..i.."Count"]
Expand Down Expand Up @@ -452,7 +452,7 @@ S:AddCallback("Skin_Quest", function()
for i = 1, MAX_NUM_ITEMS do
item = _G["QuestRequiredItem"..i]

if item and item ~= self then
if item then
name = _G["QuestRequiredItem"..i.."Name"]
link = item.hyperlink
local count = _G["QuestRequiredItem"..i.."Count"]
Expand Down

0 comments on commit 74e91bf

Please sign in to comment.