WoWInterface SVN BabySeal

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 8 to Rev 9
    Reverse comparison

Rev 8 → Rev 9

BabySeal/BabySeal.lua
5,8 → 5,7
]]
 
local addon, BabySeal = ...
BabySeal.prefix = string.format("|cff00aaff%s|r", addon)
BabySeal.wp = "|cffff0000Warning!|r"
BabySeal.prefix = string.format("|cff00aaff%s:|r |cffff0000Warning!|r", addon)
 
function BabySeal:PLAYER_LOGIN()
BabySealDB = BabySealDB or {
61,7 → 60,7
if db.raidwarning then
RaidNotice_AddMessage(RaidWarningFrame, s, ChatTypeInfo["RAID_WARNING"])
else
print(self.wp, s)
print(self.prefix, s)
end
 
if db.sound then
74,14 → 73,8
local name, rank, icon, count, dispelType, duration, expires, caster, isStealable = UnitBuff("player", v)
 
if name then
if caster == "player" then
self.playerBuff = true
return true, expires
else
-- equivalent buff is active, but is not mine
self.playerBuff = false
return true, expires
end
self.playerBuff = caster == "player" and true or false
return true, expires
end
end
 
BabySeal Property changes : Added: tsvn:logtemplate + Ailae@BabySeal: