Quantcast

In addon:PrintScanResults(): Print the recipe name and ID number whenever any problem is found, not just when there are missing/extra flags.

James D. Callahan III [03-20-10 - 02:15]
In addon:PrintScanResults(): Print the recipe name and ID number whenever any problem is found, not just when there are missing/extra flags.
Filename
Datamine.lua
diff --git a/Datamine.lua b/Datamine.lua
index 376620f..6d74fc5 100644
--- a/Datamine.lua
+++ b/Datamine.lua
@@ -2356,7 +2356,6 @@ do

 		if #missing_flags > 0 or #extra_flags > 0 then
 			found_problem = true
-			tinsert(output, string.format("%s: %d", recipe_name, spell_id))

 			-- Add a string of the missing flag numbers
 			if #missing_flags > 0 then
@@ -2427,9 +2426,10 @@ do
 		end

 		if found_problem then
+			tinsert(output, 1, string.format("%s: %d", recipe_name, spell_id))
 			return tconcat(output, "\n")
 		else
-			return nil
+			return
 		end
 	end
 end
\ No newline at end of file