fix typo returning nil in auras

This commit is contained in:
Crum
2018-06-03 16:54:55 -05:00
parent 9b646f4d15
commit f3ce4a0f98
+2 -2
View File
@@ -487,10 +487,10 @@ function UF:UpdateDebuffsHeaderPosition()
if numBuffs == 0 then if numBuffs == 0 then
debuffs:ClearAllPoints() 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 else
debuffs:ClearAllPoints() 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
end end