Minor cosmetic changes and export updates

This commit is contained in:
2024-03-23 01:08:13 +01:00
parent 1fb30875a9
commit f0b7d40483
6 changed files with 1075 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
--- COMBAT_LOG_EVENT_UNFILTERED
---@param e string
---@param ... any
function(allstates, e, ...)
local spellId, err = CLEUParser.GetSpellId(...)
if err then return end
local spellname, err = CLEUParser.GetSpellName(...)
if err then return end
local subevent, err = CLEUParser.GetSubevent(...)
if err then return end
aura_env.LogSpell(spellname, spellId, subevent, ...)
end