From f3ce4a0f98a5a200f1d96ddba9ff720640ac553a Mon Sep 17 00:00:00 2001 From: Crum Date: Sun, 3 Jun 2018 16:54:55 -0500 Subject: [PATCH] fix typo returning nil in auras --- ElvUI/Modules/UnitFrames/Elements/Auras.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ElvUI/Modules/UnitFrames/Elements/Auras.lua b/ElvUI/Modules/UnitFrames/Elements/Auras.lua index c2bfa9f..15cea48 100644 --- a/ElvUI/Modules/UnitFrames/Elements/Auras.lua +++ b/ElvUI/Modules/UnitFrames/Elements/Auras.lua @@ -487,10 +487,10 @@ function UF:UpdateDebuffsHeaderPosition() if numBuffs == 0 then debuffs:ClearAllPoints() - E:Point(debuff, sbuffs.point, buffs.attachTo, buffs.anchorPoint, buffs.xOffset, buffs.yOffset) + E:Point(debuffs, buffs.point, buffs.attachTo, buffs.anchorPoint, buffs.xOffset, buffs.yOffset) else debuffs:ClearAllPoints() - E:Point(debuff, sdebuffs.point, debuffs.attachTo, debuffs.anchorPoint, debuffs.xOffset, debuffs.yOffset) + E:Point(debuffs, debuffs.point, debuffs.attachTo, debuffs.anchorPoint, debuffs.xOffset, debuffs.yOffset) end end