Minor fix so that it doesn't report pulling aggro on "> Pull Aggro <".

This commit is contained in:
Xinhuan
2008-11-28 16:18:42 +08:00
parent ddb562574d
commit 64532ed5a0
+6 -3
View File
@@ -1561,9 +1561,12 @@ function Omen:UpdateBars()
tinsert(threatStore, threatTable)
tinsert(threatStoreTime, GetTime())
-- Store last scanned mob GUID
lastWarn.mobGUID = mobGUID
lastWarn.tankGUID = tankGUID or mobTargetGUID or sortTable[1]
lastWarn.threatpercent = myThreatPercent
local u = tankGUID or mobTargetGUID or (dbBar.ShowAggroBar and sortTable[2] or sortTable[1])
if u ~= "AGGRO" then
lastWarn.mobGUID = mobGUID
lastWarn.tankGUID = u
lastWarn.threatpercent = myThreatPercent
end
threatTable = nil
end
end