From 902b2da3815a399e6a2f67bec6c5ff62554eea74 Mon Sep 17 00:00:00 2001 From: Niketa Date: Sat, 11 Jan 2014 23:02:29 -0600 Subject: [PATCH] *Untested* Fixed bug after Horridon where trash activates loot master. --- Core.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core.lua b/Core.lua index 720493f..754f767 100644 --- a/Core.lua +++ b/Core.lua @@ -170,8 +170,8 @@ function events:COMBAT_LOG_EVENT_UNFILTERED(event, _, eventType, _, sourceGUID, self:UnregisterEvent("COMBAT_LOG_EVENT_UNFILTERED") self:UnregisterEvent("CHAT_MSG_MONSTER_YELL") return - elseif mobIDa == 55294 and not incombat then - -- Ignore Ultraxion's Twilight Shift. + elseif (mobIDa == 55294 and not incombat) or (spellID == 136767) then + -- Ignore Ultraxion's Twilight Shift and Horridon's Triple Puncture. return elseif M.nokill then -- Return if the boss is already registered. @@ -362,4 +362,4 @@ function SlashCmdList.MASTERLOOTERASSISTANT(msg, editbox) InterfaceOptionsFrame_OpenToCategory(M.Options) InterfaceOptionsFrame_OpenToCategory(M.Options) end -end \ No newline at end of file +end -- 1.7.9.5