Quantcast

Fixed an issue with the profession dump where reputation levels after the first were not converted to a human-readable form.

torhal [02-05-10 - 12:13]
Fixed an issue with the profession dump where reputation levels after the first were not converted to a human-readable form.
Filename
Datamine.lua
diff --git a/Datamine.lua b/Datamine.lua
index 8e134a9..fa9f336 100644
--- a/Datamine.lua
+++ b/Datamine.lua
@@ -1529,7 +1529,7 @@ do
 					end
 				else
 					if acquire_type == ACQUIRE_FLAGS.REPUTATION then
-						flag_string = flag_string..", ".."A."..ACQUIRE_STRINGS[acquire.type]..", "..acquire.ID..", "..acquire.rep_level..", "..acquire.rep_vendor
+						flag_string = flag_string..", ".."A."..ACQUIRE_STRINGS[acquire.type]..", "..acquire.ID..", "..REP_LEVELS[acquire.rep_level or 1]..", "..acquire.rep_vendor
 					else
 						flag_string = flag_string..", ".."A."..ACQUIRE_STRINGS[acquire.type]..", "..acquire.ID
 					end