Remove something that's not working that I need to fix for tonight.
ackis [01-21-09 - 20:09]
Remove something that's not working that I need to fix for tonight.
diff --git a/AckisRecipeList.lua b/AckisRecipeList.lua
index e7b41e5..ada4ffa 100644
--- a/AckisRecipeList.lua
+++ b/AckisRecipeList.lua
@@ -2090,10 +2090,11 @@ function addon:GetTextDump(RecipeDB, profession)
local texttable = {}
- local profspellid = GetSpellInfo(profession)
+ --local profspellid = GetSpellInfo(profession)
--@debug@
- self:Print("DEBUG: Getting text dumb for: " .. profession .. "(" .. profspellid .. ")")
+ --self:Print("DEBUG: Getting text dumb for: " .. profession .. "(" .. profspellid .. ")")
+ self:Print("DEBUG: Getting text dumb for: " .. profession)
--@end-debug@
-- Add a header to the text table
@@ -2103,7 +2104,7 @@ function addon:GetTextDump(RecipeDB, profession)
for SpellID in pairs(RecipeDB) do
- if (RecipeDB[SpellID]["Profession"] == profspellid) then
+ --if (RecipeDB[SpellID]["Profession"] == profspellid) then
-- Add Spell ID, Name and Skill Level to the list
tinsert(texttable,SpellID)
@@ -2162,7 +2163,7 @@ function addon:GetTextDump(RecipeDB, profession)
tinsert(texttable,"],false\n")
end
- end
+ --end
end
return tconcat(texttable,"")