Request: Quest Markers
Stormbrain24 opened this issue · 2 comments
Love your addon and i've been using it for years but I have always had to use the questplates addon to be able to see quest mobs with TP. Questplates is dead now so I figured I would make a request here to see if its something you could add. Thanks for all the hard work!!
I've thought about adding something similar to it before, I might work on it when I'm done leveling :D
In the meantime, you can go to your installation of QuestPlates (typically _retail_/Interface/Addons/QuestPlates
) and open the QuestPlates.lua
file. Then just delete line 113. I.e. lines 110 to 115 should start looking like this:
local questID
for i = 3, #tooltipData.lines do
local line = tooltipData.lines[i]
TooltipUtil.SurfaceArgs(line)
if line.type == 17 and line.id then -- Tooltip line is a quest header..?
and we just want
local questID
for i = 3, #tooltipData.lines do
local line = tooltipData.lines[i]
if line.type == 17 and line.id then -- Tooltip line is a quest header..?
This should fix the addon, that line just calls a function that doesn't exist anymore and its functionality is pointless now.