WoWInterface SVN Blessed

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 25 to Rev 24
    Reverse comparison

Rev 25 → Rev 24

trunk/Blessed/Blessed.lua
98,7 → 98,8
})
frame:SetBackdropColor(1, 1, 1, 0)
 
frame:SetSize(iconSize, iconSize)
frame:SetWidth(iconSize)
frame:SetHeight(iconSize)
frame:SetPoint(db.framePoint, db.xOfs, db.yOfs)
 
frame:SetMovable(true)
248,7 → 249,7
-- Only track Devotion Aura on player
if spellID == 31821 and destGUID ~= pguid then return end
 
-- Always get rid of Beacon, to avoid duplicates due to being in different realms
-- Get rid of Beacon, to avoid duplicates due to being in different realms
if spellID == 53563 then
self:RemoveFrame(spellID, destGUID)
end
295,7 → 296,7
if self.update > 0 then return end
 
self.update = self.update + 1
self.timer:SetFormattedText("%.0f", self.duration)
self.timer:SetFormattedText("%.0f", floor(self.duration))
 
if self.duration <= 0 then
Blessed:RemoveFrame(self.id, self.guid)