WoWInterface SVN oUF_RuneBar

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 2 to Rev 3
    Reverse comparison

Rev 2 → Rev 3

trunk/oUF_RuneBar/oUF_RuneBar.lua
8,6 → 8,8
- symbol: The symbol used when cooldowns are over. (Default: "*")
- interval: The time offset used for the update script. (Default: 0.5)
 
StatusBar only:
- :PostUpdate(event, rune, usable)
--]]
 
local localized, class = UnitClass('player')
47,6 → 49,8
if(rune and not usable and GetRuneType(rune)) then
self.RuneBar[rune]:SetScript('OnUpdate', function(self) OnUpdateBar(self, rune) end)
end
 
if(self.RuneBar.PostUpdate) then self.RuneBar:PostUpdate(event, rune, usable) end
end
 
local function Update(self, event, rune)