Skip to content

Commit

Permalink
Upper-case wowRole
Browse files Browse the repository at this point in the history
  • Loading branch information
rossnichols committed Jan 6, 2021
1 parent 6322d22 commit bf438e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 4H-Assist/driver.lua
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ function ABP_4H:GetRaiderSlots()
local name, _, subgroup, _, _, class, _, _, _, wowRole = GetRaidRosterInfo(i);
local slot = (5 * (subgroup - 1)) + 1;
while slots[slot] do slot = slot + 1; end
slots[slot] = { name = name, wowRole = wowRole, class = class };
slots[slot] = { name = name, wowRole = wowRole and wowRole:upper(), class = class };
map[name] = slot;
count = count + 1;
end
Expand Down

0 comments on commit bf438e0

Please sign in to comment.