8 lines
220 B
Lua
8 lines
220 B
Lua
-- TICKER_500
|
|
function(e)
|
|
local timeToKick = aura_env.KickTime - GetTime()
|
|
if timeToKick > 0 and timeToKick < 60 then
|
|
WeakAuras.ScanEvents("PLAY_SOUND", "Interface\\Sounds\\quack.ogg")
|
|
end
|
|
return timeToKick > 0
|
|
end |