WoWInterface SVN OpenRDX

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk/RDX/Raid/Bossmods
    from Rev 653 to Rev 658
    Reverse comparison

Rev 653 → Rev 658

Alerts.lua
395,7 → 395,7
function RDX.Alert.Spam(txt)
if not RDXU.spam then return; end
if GetNumRaidMembers() > 0 then
local myunit = RDXDAL._ReallyFastProject("player");
local myunit = RDXDAL.GetMyUnit();
if myunit:IsLeader() then
SendChatMessage(txt, "RAID_WARNING");
else
Encounters.lua
164,7 → 164,7
-----------------------------------------------
--- Synchronize the current encounter
function RDX.SyncEncounter()
local myunit = RDXDAL._ReallyFastProject("player");
local myunit = RDXDAL.GetMyUnit();
if myunit:IsLeader() then
RPC_Group:Flash("enc_set", RDX.GetActiveEncounter());
end
265,7 → 265,7
function RDX.StartEncounter(nosync)
local ename = RDX.GetActiveEncounter();
if encTimer:IsRunning() then return; end
local myunit = RDXDAL._ReallyFastProject("player");
local myunit = RDXDAL.GetMyUnit();
if (not nosync) and (myunit:IsLeader()) then
RPC_Group:Flash("enc_start", ename);
end
287,7 → 287,7
function RDX.StopEncounter(nosync)
local ename = RDX.GetActiveEncounter();
PlayBtn_SetPlay();
local myunit = RDXDAL._ReallyFastProject("player");
local myunit = RDXDAL.GetMyUnit();
-- Synchronize encounter stop
if (not nosync) and (myunit:IsLeader()) then
RPC_Group:Flash("enc_stop", ename);