From e2c830618e385d33b544d72397ca0b4b459caa3b Mon Sep 17 00:00:00 2001 From: pompachomp Date: Thu, 18 Mar 2010 23:19:09 -0400 Subject: [PATCH] added the ability to print out a plain list of the recipe names for the profession that you are scanning. Fixed a faction name: "Violet Eye"->"The Violet Eye" --- ARL.lua | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ARL.lua b/ARL.lua index 9c8ca82..ae30e8d 100644 --- a/ARL.lua +++ b/ARL.lua @@ -1823,7 +1823,7 @@ do [111] = BFAC["The Sha'tar"], [112] = BFAC["Shattered Sun Offensive"], [113] = BFAC["Sporeggar"], - [114] = BFAC["Violet Eye"], + [114] = BFAC["The Violet Eye"], [115] = BFAC["Argent Crusade"], [116] = BFAC["Frenzyheart Tribe"], [117] = BFAC["Knights of the Ebon Blade"], @@ -1862,6 +1862,10 @@ do local recipe_prof = GetSpellInfo(recipe.profession) if recipe_prof == profession then + --Name + if output == "Name" then + tinsert(text_table, recipe.name.."\n") + end -- CSV if not output or output == "Comma" then -- Add Spell ID, Name and Skill Level to the list -- 1.7.9.5