Skip to content

Commit

Permalink
attempt to fix certain debuffs not being displayed (#364)
Browse files Browse the repository at this point in the history
  • Loading branch information
jordonwow committed Mar 29, 2022
1 parent 4384940 commit a2472ff
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions BigDebuffs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1480,9 +1480,9 @@ if WOW_PROJECT_ID == WOW_PROJECT_MAINLINE then
hooksecurefunc("CompactUnitFrame_UpdateAuras", function(frame, isFullUpdate, updatedAuraInfos)
local displayOnlyDispellableDebuffs = frame.optionTable.displayOnlyDispellableDebuffs;

if AuraUtil.ShouldSkipAuraUpdate(isFullUpdate, updatedAuraInfos, CompactUnitFrame_CouldDisplayAura, displayOnlyDispellableDebuffs) then
return;
end
-- if AuraUtil.ShouldSkipAuraUpdate(isFullUpdate, updatedAuraInfos, CompactUnitFrame_CouldDisplayAura, displayOnlyDispellableDebuffs) then
-- return;
-- end

local doneWithBuffs = not frame.buffFrames or not frame.optionTable.displayBuffs or frame.maxBuffs == 0;
local doneWithDebuffs = not frame.debuffFrames or not frame.optionTable.displayDebuffs or frame.maxDebuffs == 0;
Expand Down

0 comments on commit a2472ff

Please sign in to comment.