Tumble files around a bit
This commit is contained in:
13
WeakAuras/Projects/RaiderlosSA/logger.lua
Normal file
13
WeakAuras/Projects/RaiderlosSA/logger.lua
Normal file
@@ -0,0 +1,13 @@
|
||||
--- COMBAT_LOG_EVENT_UNFILTERED
|
||||
---@param e string
|
||||
---@param ... any
|
||||
function(e, ...)
|
||||
local spellName, err = CLEUParser.GetSpellName(...)
|
||||
if err then return end
|
||||
local spellId, err = CLEUParser.GetSpellId(...)
|
||||
if err then return end
|
||||
local subevent, err = CLEUParser.GetSubevent(...)
|
||||
if err then return end
|
||||
aura_env.LogSpell(spellName, spellId, subevent, ...)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user