Files
wow-weakauras/FreshShit/PersonalAnnouncer/event.lua

13 lines
312 B
Lua

w-- TICKER_500
function(e)
if ActiveSet == nil then
ActiveSet = Cooldowns[UnitClass("player")]
if ActiveSet == nil then
ActiveSet = {}
end
end
for _, cooldown in ipairs(ActiveSet) do
if aura_env.debug then print(string.format("Calling update on %s", cooldown.name)) end
cooldown:Update()
end
end