Not printing taunt fails for living meteors
This commit is contained in:
parent
48828d172a
commit
8c34b0e63d
1 changed files with 4 additions and 0 deletions
|
@ -85,6 +85,10 @@ function mod:COMBAT_LOG_EVENT_UNFILTERED(_, timestamp, event, _, srcGUID, srcNam
|
|||
|
||||
-- Spell Watch ----------------------------------------------------------------
|
||||
if (db.spellWatch and (UnitInRaid(srcName) or UnitInParty(srcName)) and (not UnitInBattleground("player")) and not zoneBlacklist[GetRealZoneText()]) then
|
||||
-- Special case for gripping Living Meteors on Ragnaros
|
||||
if (dstName == "Living Meteor") then
|
||||
return
|
||||
end
|
||||
local act = false;
|
||||
if ( (event == "SPELL_AURA_APPLIED" and spellWatch[spellName]) or
|
||||
(event == "SPELL_CAST_SUCCESS" and aoeSpellWatch[spellName]) ) then
|
||||
|
|
Loading…
Reference in a new issue