Fixes and patches

This commit is contained in:
iceroth
2006-12-08 02:19:21 +00:00
parent 7740ef9f74
commit 123dbf2542
7 changed files with 45 additions and 29 deletions

View File

@ -401,9 +401,12 @@ function TargetOfTarget.prototype:BuffOnEnter(type)
return
end
GameTooltip:SetOwner(this, "ANCHOR_BOTTOMRIGHT")
GameTooltip:SetUnitDebuff(this.unit, this.id)
if (this.unit and this.id) then
GameTooltip:SetOwner(this, "ANCHOR_BOTTOMRIGHT")
GameTooltip:SetUnitDebuff(this.unit, this.id)
end
end
-- load us up
IceHUD_Module_TargetOfTarget = TargetOfTarget:new()