- Round 1 of WoW 5.0 fixes.

This commit is contained in:
Parnic
2012-06-30 19:57:12 +00:00
parent d7e4bfbee2
commit b5350965a7
4 changed files with 27 additions and 6 deletions

View File

@ -1552,7 +1552,11 @@ function IceTargetInfo.prototype:TargetName(event, unit)
end
self.leader = UnitIsPartyLeader(self.unit) and " |cffcccc11Leader|r" or ""
if IceHUD.WowVer < 50000 then
self.leader = UnitIsPartyLeader(self.unit) and " |cffcccc11Leader|r" or ""
else
self.leader = UnitIsGroupLeader(self.unit) and " |cffcccc11Leader|r" or ""
end
self:Update(unit)
end
end