# HG changeset patch # User James D. Callahan III # Date 1352752835 21600 # Node ID 5117c75a47cb2f1f6509f241e043f8b466c062c6 # Parent 1078a6d1c4c95a837659b39f3a7779eef200f852 Stop worrying about whether or not the player is in an LFR dungeon; if an LFR boss is matched, simply record it. If SHOW_LOOT_TOAST doesn't fire, nothing will be recorded as LOOKING_FOR_RAID. diff -r 1078a6d1c4c9 -r 5117c75a47cb Main.lua --- a/Main.lua Sun Nov 11 16:43:15 2012 -0600 +++ b/Main.lua Mon Nov 12 14:40:35 2012 -0600 @@ -1183,14 +1183,8 @@ end if private.RAID_FINDER_BOSS_IDS[unit_idnum] then - local _, instance_type, instance_difficulty = _G.GetInstanceInfo() - - if IsRaidFinderInstance(instance_type, instance_difficulty) then - Debug(("%s: Matching boss %s; in raid finder instance."):format(sub_event, dest_name)) - private.raid_finder_boss_id = unit_idnum - else - Debug(("%s: Matching boss %s; NOT in raid finder instance."):format(sub_event, dest_name)) - end + Debug(("%s: Matching boss %s."):format(sub_event, dest_name)) + private.raid_finder_boss_id = unit_idnum else Debug(("%s: Killed NPC %s (ID: %d) is not in boss list."):format(sub_event, dest_name, unit_idnum)) end