Skip to content

Commit

Permalink
Fix missing AuraUtil.UnpackAuraData call
Browse files Browse the repository at this point in the history
Fixes #765
  • Loading branch information
jordonwow committed Aug 14, 2024
1 parent 6c25db8 commit 11940d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BigDebuffs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1686,7 +1686,7 @@ else
end

local function CompactUnitFrame_UtilShouldDisplayDebuff(unit, index, filter)
local name, icon, count, debuffType, duration, expirationTime, unitCaster, canStealOrPurge, _, spellId, canApplyAura, isBossAura = UnitDebuff(unit, index, filter);
local name, icon, count, debuffType, duration, expirationTime, unitCaster, canStealOrPurge, _, spellId, canApplyAura, isBossAura = AuraUtil.UnpackAuraData(UnitDebuff(unit, index, filter));

local hasCustom, alwaysShowMine, showForMySpec = SpellGetVisibilityInfo(spellId, UnitAffectingCombat("player") and "RAID_INCOMBAT" or "RAID_OUTOFCOMBAT");

Expand Down

0 comments on commit 11940d4

Please sign in to comment.