11 lines
274 B
Lua
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
|