Commit 5568fc61 authored by Ivaria's avatar Ivaria
Browse files

Fixed threat situation update for neutral mobs

parent d954ac03
......@@ -1050,7 +1050,7 @@ local function VUHDO_updateAllAggro()
tInfo["aggro"] = true;
end
tTarget = tInfo["targetUnit"];
if UnitIsEnemy(tUnit, tTarget) then
if not UnitIsFriend(tUnit, tTarget) then
if VUHDO_INTERNAL_TOGGLES[14] then -- VUHDO_UPDATE_AGGRO
_, _, tThreatPerc = VUHDO_unitDetailedThreatSituation(tUnit, tTarget);
tInfo["threatPerc"] = tThreatPerc or 0;
......
......@@ -14,6 +14,7 @@ Known issues:
Bugfixes:
-- Fixed usage of deprecated Blizzard API HasLFGRestriction
-- Fixed threat situation update for neutral mobs
Improvements:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment