From 33673e021f1668bf9b82e146e4b0b6d16543e3fe Mon Sep 17 00:00:00 2001 From: pompachomp Date: Mon, 22 Mar 2010 11:22:32 -0400 Subject: [PATCH] Print out the characters name in the header of the text dump of the profession scanned. --- ARL.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ARL.lua b/ARL.lua index 0e47812..80cf60a 100644 --- a/ARL.lua +++ b/ARL.lua @@ -1872,10 +1872,10 @@ do twipe(text_table) if not output or output == "Comma" then - tinsert(text_table, strformat("Ackis Recipe List Text Dump for %s, in the form of Comma Separated Values.\n ", profession)) + tinsert(text_table, strformat("Ackis Recipe List Text Dump for %s's %s, in the form of Comma Separated Values.\n ", UnitName("player"), profession)) tinsert(text_table, "Spell ID,Recipe Name,Skill Level,ARL Filter Flags,Acquire Methods,Known\n") elseif output == "BBCode" then - tinsert(text_table, strformat("Ackis Recipe List Text Dump for %s, in the form of BBCode.\n", profession)) + tinsert(text_table, strformat("Ackis Recipe List Text Dump for %s's %s, in the form of BBCode.\n", UnitName("player"), profession)) end local recipe_list = private.recipe_list -- 1.7.9.5