Files
wow-weakauras/FreshShit/RaiderlosSA/event.lua
2024-03-14 23:18:18 +01:00

11 lines
274 B
Lua

--- COMBAT_LOG_EVENT_UNFILTERED
---@param e string
---@param ... any
function(e, ...)
local subevent, err = CLEUParser.GetSubevent(...)
if err then return end
local spellId, err = CLEUParser.GetSpellId(...)
if err then return end
print(EventMap[subevent][spellId])
end