We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blizzard added a necessary function call to retrieve combat log args when COMBAT_LOG_EVENT_UNFILTERED fires: CombatLogGetCurrentEventInfo()
Here's a potential fix (Modules/ViragDevToolEvents.lua line 75):
function cleuHelper( args, ... ) for i = 1, select( "#", ... ) do args[i+1] = select( i, ... ) end end function ViragDevTool:SetMonitorEventScript() local f = self:GetListenerFrame() f:SetScript("OnEvent", function(this, ...) local args = { ... } local event = args[1] local showAllEvents = ViragDevTool:GetMonitoredEvent("ALL") if ViragDevTool:GetMonitoredEvent(event) or (showAllEvents and showAllEvents.active) then if event == 'COMBAT_LOG_EVENT_UNFILTERED' then cleuHelper( args, CombatLogGetCurrentEventInfo() ) end if #args == 1 then args = args[1] end ViragDevTool:Add(args, date("%X") .. " " .. event) end end); end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Blizzard added a necessary function call to retrieve combat log args when COMBAT_LOG_EVENT_UNFILTERED fires: CombatLogGetCurrentEventInfo()
Here's a potential fix (Modules/ViragDevToolEvents.lua line 75):
The text was updated successfully, but these errors were encountered: