Skip to content

Commit

Permalink
quest: add quest completion state to tooltips
Browse files Browse the repository at this point in the history
  • Loading branch information
shagu committed Jan 7, 2024
1 parent 6ff70d5 commit 81543cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ if not GetQuestLink then -- Allow to send questlinks from questlog

-- scan for active quests
local queststate = pfQuest_history[id] and 2 or 0
queststate = pfQuest.questlog[id] and 1 or nil
queststate = pfQuest.questlog[id] and 1 or queststate

if queststate == 0 then
ItemRefTooltip:AddLine(pfQuest_Loc["You don't have this quest."] .. "\n\n", 1, .5, .5)
Expand Down

0 comments on commit 81543cc

Please sign in to comment.