View Bug Report
Brawler's Guild repColour is nil
Bug #: 8156
File: XPBarNone
Date: 09-01-14 06:19 PM
By: Cidrei
Status: Unconfirmed
Once you hit Brawler's Guild rank 9 or above, there is no longer a matching repColour as exalted is normally rank 8 of a reputation.

I fixed this in my local copy by "converting" the 10 rank system into an 8 rank system, insterting the following code after line 1124 in Core.lua:
Code:
if friendID == 1374 or friendID == 1419 then
	repStanding = floor( (repStanding * 0.8) + .5)
end

RSS 2.0 Feed for Bug CommentsNotes Sort Options
By: Cidrei - 09-05-14 03:45 AM
Changed the code a bit to max the bar at rank 10.

if friendID == 1374 or friendID == 1419 then -- Brawler's Guild
repStanding = floor( (repStanding * 0.8) + .5)
if not nextFriendThresh then
repValue = 1
repMax = 1
end
end