From 63d6f3b0c7c91a7a91fe0b2491b609fc30edf9e8 Mon Sep 17 00:00:00 2001 From: torhal Date: Fri, 5 Feb 2010 12:13:27 +0000 Subject: [PATCH] Fixed an issue with the profession dump where reputation levels after the first were not converted to a human-readable form. --- Datamine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 1.7.9.5