We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79437de commit 19c3de3Copy full SHA for 19c3de3
Categories/TooltipScanning.lua
@@ -16,6 +16,7 @@ local GetClassicExpansionLevel = GetClassicExpansionLevel
16
DogTag_Unit_funcs[#DogTag_Unit_funcs+1] = function(DogTag_Unit, DogTag)
17
18
local L = DogTag_Unit.L
19
+local issecretvalue = DogTag.issecretvalue
20
21
local tt
22
if not C_TooltipInfo then
@@ -93,7 +94,7 @@ local function FigureNPCGuild(unit)
93
94
elseif tt then
95
left_2 = tt.left[2] and tt.left[2]:GetText() or nil
96
end
- if not left_2 or left_2:find(LEVEL_start) then
97
+ if not left_2 or issecretvalue(left_2) or left_2:find(LEVEL_start) then
98
return nil
99
100
if info and not TooltipLineCouldBeGuild(info.lines[2]) then
0 commit comments