Files
wow-weakauras/FreshShit/CombopointFlasher/event.lua
2024-11-01 00:12:57 +01:00

9 lines
217 B
Lua

-- UNIT_POWER_FREQUENT
---@param e string
---@param unit string
---@param power string
function(e, unit, power)
if unit ~= "player" then return end
if power ~= "COMBO_POINTS" then return end
return true
end