This is due to Blizzard making class names different for each gender
There is a workaround for this
Go to roster/localization/ and find your locale file
Open the file in a text editor (not with notepad) and find this section around line 458
(this is from enUS, your language will look different, just look for
// Class Icons-Array)
- Code: Select all
// Class Icons-Array
$wordings['enUS']['class_iconArray'] = array (
'Druid'=>'Ability_Druid_Maul',
'Hunter'=>'INV_Weapon_Bow_08',
'Mage'=>'INV_Staff_13',
'Paladin'=>'Spell_Fire_FlameTounge',
'Priest'=>'Spell_Holy_LayOnHands',
'Rogue'=>'INV_ThrowingKnife_04',
'Shaman'=>'Spell_Nature_BloodLust',
'Warlock'=>'Spell_Shadow_Cripple',
'Warrior'=>'INV_Sword_25',
);
I belive that each class is now different for each gender, copy each class line and change them to match the new names
There is also another section around line 546
- Code: Select all
$wordings['enUS']['Druid']='Druid';
$wordings['enUS']['Hunter']='Hunter';
$wordings['enUS']['Mage']='Mage';
$wordings['enUS']['Paladin']='Paladin';
$wordings['enUS']['Priest']='Priest';
$wordings['enUS']['Rogue']='Rogue';
$wordings['enUS']['Shaman']='Shaman';
$wordings['enUS']['Warlock']='Warlock';
$wordings['enUS']['Warrior']='Warrior';
Do the same as above here