WoWInterface SVN zz_BuffInfo

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 26 to Rev 27
    Reverse comparison

Rev 26 → Rev 27

zz_BuffInfo/core.lua
71,7 → 71,7
 
local function updateAura(spellId, aurainfo)
local b = getButton(spellId)
if(aurainfo[1]) then
if(aurainfo and aurainfo[1]) then
b:Show()
for n = 1, 3 do
b['vText'..n]:SetText(aurainfo[14 + n])
110,7 → 110,7
aurainfo = findAura(aura[1],itype)
-- print(aurainfo[1],aura[1],aurainfo[14],aurainfo[15],aurainfo[16])
updateAura(spellId,aurainfo)
if(aurainfo[1]) then
if(aurainfo and aurainfo[1]) then
checked[spellId] = true
end
end