View Single Post
10-18-10, 10:23 PM   #17
XorIO
A Deviate Faerie Dragon
 
XorIO's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2009
Posts: 16
Fix

in nUI_UnitRole.lua

line 354
replace
Code:
role_tank, role_healer, role_damage = UnitGroupRolesAssigned( unit_id );
with
Code:
role_assigned = UnitGroupRolesAssigned( unit_id );
role_tank = role_assigned == 'TANK';
role_healer = role_assigned == 'HEALER';
role_damage = role_assigned == 'DAMAGER';
__________________
Good-bye... and hello... as always!
Victor