mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-22 15:46:56 +00:00
0cae1cf1ab
small changes
8 lines
467 B
Lua
8 lines
467 B
Lua
pfUI:RegisterModule("combatlogfix", "tbc", function ()
|
|
-- Fixes the combatlog break bugs that exist since patch 2.4 by simply clearing the whole log
|
|
-- on every update. This is required in order to receive new log events. Otherwise, addons like
|
|
-- Omen or Recount won't work and simply don't receive any new data at a given time.
|
|
local combatlog = CreateFrame("Frame", "pfCombatLogFix", UIParent)
|
|
combatlog:SetScript("OnUpdate", CombatLogClearEntries)
|
|
end)
|