WoWInterface SVN zz_BuffInfo

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 10 to Rev 11
    Reverse comparison

Rev 10 → Rev 11

zz_BuffInfo/zz_BuffInfo.toc
1,4 → 1,4
## Interface: 50300
## Interface: 60000
## Title: BuffInfo
## Notes: Display additional buff informations
## Author: Rilgamon
zz_BuffInfo/core.lua
92,11 → 92,14
lastbutton = nil
for spellId, aura in pairs(auras) do
for _, itype in ipairs(types) do
aurainfo = {UnitAura("player", aura[1],nil,itype)}
-- print(aurainfo[1],aura[1],aurainfo[14],aurainfo[15],aurainfo[16])
updateAura(spellId,aurainfo)
if(aurainfo[1]) then
checked[spellId] = true
-- print(tostring(aura[1]).."-"..tostring(itype))
if(aura[1]) then
aurainfo = {UnitAura("player", aura[1],nil,itype)}
-- print(aurainfo[1],aura[1],aurainfo[14],aurainfo[15],aurainfo[16])
updateAura(spellId,aurainfo)
if(aurainfo[1]) then
checked[spellId] = true
end
end
end
end