From 11940d4028fae558cab45fbaf391a0d9f123812d Mon Sep 17 00:00:00 2001 From: jordonwow <29447509+jordonwow@users.noreply.github.com> Date: Wed, 14 Aug 2024 14:15:13 -0700 Subject: [PATCH] Fix missing AuraUtil.UnpackAuraData call Fixes #765 --- BigDebuffs.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BigDebuffs.lua b/BigDebuffs.lua index 06914d9..228060b 100644 --- a/BigDebuffs.lua +++ b/BigDebuffs.lua @@ -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");