WoWInterface SVN Broadcaster

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 6 to Rev 7
    Reverse comparison

Rev 6 → Rev 7

Broadcaster/Modules/Priest.lua
34,7 → 34,7
if resurrectionSpellID[spellID] then
local max = #BroadcasterPriestMsgs.Resurrection
local random = math.random(max)
SendChatMessage(BroadcasterPriestMsgs.Resurrection[random] , BroadcasterChannel)
SendChatMessage(BroadcasterPriestMsgs.Resurrection[random] , Broadcaster.db.profile.channel)
end
end
end
Broadcaster/Modules/Druid.lua
34,7 → 34,7
if rebirthSpellID[spellID] then
local max = #BroadcasterDruidMsgs.Rebirth
local random = math.random(max)
SendChatMessage(BroadcasterDruidMsgs.Rebirth[random] , BroadcasterChannel)
SendChatMessage(BroadcasterDruidMsgs.Rebirth[random] , Broadcaster.db.profile.channel)
end
end
end
Broadcaster/Modules/Shaman.lua
33,7 → 33,7
if ancSpiritSpellID[spellID] then
local max = #BroadcasterShamanMsgs.AncestralSpirit
local random = math.random(max)
SendChatMessage(BroadcasterShamanMsgs.AncestralSpirit[random] , BroadcasterChannel)
SendChatMessage(BroadcasterShamanMsgs.AncestralSpirit[random] , Broadcaster.db.profile.channel)
end
end
end
Broadcaster/Modules/Paladin.lua
33,7 → 33,7
if redemptionSpellID[spellID] then
local max = #BroadcasterPaladinMsgs.Redemption
local random = math.random(max)
SendChatMessage(BroadcasterPaladinMsgs.Redemption[random] , BroadcasterChannel)
SendChatMessage(BroadcasterPaladinMsgs.Redemption[random] , Broadcaster.db.profile.channel)
end
end
end