*Untested* Fixed bug after Horridon where trash activates loot master.
Niketa [01-12-14 - 05:02]
*Untested* Fixed bug after Horridon where trash activates loot master.
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