Files
wow-weakauras/LegionWA/SoTR Texture/Init.lua
2024-08-24 22:45:34 +02:00

8 lines
185 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