Quantcast

Add scan command to command line, add sunwell trash to custom db

ackis [01-09-09 - 01:03]
Add scan command to command line, add sunwell trash to custom db
Filename
AckisRecipeList.lua
Locals/ARLLocals-enUS.lua
RecipeDB/ARL-Custom.lua
diff --git a/AckisRecipeList.lua b/AckisRecipeList.lua
index 0ff358c..456423e 100644
--- a/AckisRecipeList.lua
+++ b/AckisRecipeList.lua
@@ -1386,6 +1386,8 @@ function addon:ChatCommand(input)
 		InterfaceOptionsFrame_OpenToCategory(self.optionsFrame["Profiles"])
 	elseif (input == tolower(L["Filter"])) then
 		InterfaceOptionsFrame_OpenToCategory(self.optionsFrame["Filters"])
+	elseif (input == tolower(L["Scan"])) then
+		self:AckisRecipeList_Command(false)
 	elseif (input == tolower("minedata")) then
 		self:MineSkillLevelData()
 	else
diff --git a/Locals/ARLLocals-enUS.lua b/Locals/ARLLocals-enUS.lua
index 677fbd0..b5c9198 100644
--- a/Locals/ARLLocals-enUS.lua
+++ b/Locals/ARLLocals-enUS.lua
@@ -349,6 +349,7 @@ L["Custom29"] = "ZA bosses"
 L["Custom30"] = "Jandice in Scholo book appears"
 L["Custom31"] = "Blacksmith plans in Strath"
 L["Custom32"] = "DM Tribute Run - Chest"
+L["Custom33"] = "Trash in Sunwell"

 -- Monster/Quest/Trainer/Vendor strings:

diff --git a/RecipeDB/ARL-Custom.lua b/RecipeDB/ARL-Custom.lua
index 5df8f47..7e7e417 100644
--- a/RecipeDB/ARL-Custom.lua
+++ b/RecipeDB/ARL-Custom.lua
@@ -65,6 +65,7 @@ function addon:InitCustom(CustomDB)
 	self:addLookupList(CustomDB, 30, L["Custom30"])
 	self:addLookupList(CustomDB, 31, L["Custom31"])
 	self:addLookupList(CustomDB, 32, L["Custom32"])
+	self:addLookupList(CustomDB, 33, L["Custom33"])

 end