[IsMasterLooter] should probably check if the unit is actually the master looter, not just if they're in your raid.

This commit is contained in:
ellipsis
2008-04-01 06:49:37 +00:00
parent d7ad5a682e
commit f73fbc3825

View File

@ -517,7 +517,7 @@ DogTag:AddTag("Unit", "IsMasterLooter", {
end
for i = 1, GetNumRaidMembers() do
local name, rank, subgroup, level, class, fileName, zone, online, isDead, role, isML = GetRaidRosterInfo(i)
if name == n then
if name == n and isML then
return true
end
end