fix(Core/Pets): Eye of Kilrogg should not put its owner in combat wit… (#7193)

- Closes #6627
This commit is contained in:
UltraNix
2021-10-07 20:03:04 +02:00
committed by GitHub
parent 681ac3d79a
commit 0e5eb1b0cf
3 changed files with 16 additions and 3 deletions

View File

@@ -148,9 +148,15 @@ void HostileReference::addThreat(float modThreat)
if (isValid() && modThreat >= 0.0f)
{
Unit* victimOwner = getTarget()->GetCharmerOrOwner();
if (victimOwner && victimOwner->IsAlive())
GetSource()->addThreat(victimOwner, 0.0f); // create a threat to the owner of a pet, if the pet attacks
Unit* target = getTarget();
if (target->GetEntry() != NPC_EYE_OF_KILROGG) // Excluded Eye of Kilrogg
{
Unit* victimOwner = target->GetCharmerOrOwner();
if (victimOwner && victimOwner->IsAlive())
{
GetSource()->addThreat(victimOwner, 0.0f); // create a threat to the owner of a pet, if the pet attacks
}
}
}
}