# HG changeset patch # User James D. Callahan III # Date 1348684338 18000 # Node ID 5f43b650e3418b5535013e7a21b78b14f2976cf1 # Parent fa7f91077c54210acb4f3d25c7d37a7c49bca0ac Added recording or LFR data. diff -r fa7f91077c54 -r 5f43b650e341 Main.lua --- a/Main.lua Wed Sep 26 13:23:56 2012 -0500 +++ b/Main.lua Wed Sep 26 13:32:18 2012 -0500 @@ -199,6 +199,11 @@ if not instance_type or instance_type == "" then instance_type = "NONE" end + + -- Raid difficulty of 2 is 25-man + if instance_type == "raid" and instance_difficulty == 2 and _G.IsPartyLFG() and _G.IsInLFGDungeon() then + difficulty_name = "LOOKING_FOR_RAID" + end return ("%s:%s:%s"):format(instance_type:upper(), difficulty_name:upper():gsub(" ", "_"), _G.tostring(is_dynamic)) end