Files
wow-weakauras/LegionWA/SoTR Texture/Init.lua
2022-08-19 10:45:52 +02:00

8 lines
178 B
Lua

aura_env.findAura = function(LFname)
for i = 1, 40 do
local name = UnitAura("player", i)
if (name == LFname) then
return i
end
end
end