Core/Spell: Reset threat to zero when the hunter use Feign Death

Closes #23874
This commit is contained in:
Treeston
2019-12-07 19:13:06 +01:00
committed by Killyana
parent 6db4bf6671
commit d4b00df781

View File

@@ -2190,6 +2190,9 @@ void AuraEffect::HandleFeignDeath(AuraApplication const* aurApp, uint8 mode, boo
}
}
}
for (auto& pair : target->GetThreatManager().GetThreatenedByMeList())
pair.second->ScaleThreat(0.0f);
if (target->GetMap()->IsDungeon()) // feign death does not remove combat in dungeons
{