unrestrict nameplate units, we dont have restrictions with awesomewotlk

This commit is contained in:
NoM0Re
2024-07-01 17:16:03 +02:00
parent 55939acfe0
commit 60460fb912
6 changed files with 9 additions and 12 deletions
+1 -2
View File
@@ -4655,11 +4655,10 @@ do
for i = 1, 40 do
trackableUnits["raid" .. i] = true
trackableUnits["raidpet" .. i] = true
trackableUnits["nameplate" .. i] = true
end
function WeakAuras.UntrackableUnit(unit)
return not trackableUnits[unit]
return not (trackableUnits[unit] or string.match(unit, "^nameplate%d+$"))
end
end