13 lines
311 B
Lua
13 lines
311 B
Lua
-- 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 |