From 8c34b0e63dde84a24c2e307b8aae8ac60cc73b49 Mon Sep 17 00:00:00 2001 From: pigmonkey Date: Sat, 3 Sep 2011 15:07:34 -0400 Subject: [PATCH] Not printing taunt fails for living meteors --- modules/announce.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/announce.lua b/modules/announce.lua index a4bc473..7f2c2b8 100644 --- a/modules/announce.lua +++ b/modules/announce.lua @@ -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