mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 17:05:44 +01:00
Core/Spell: Hand Of Reckoning no damage when taunting players pet (#17518)
* Core/Spell: Hand Of Reckoning no damage when taunting players pet By Effec7, closes #9068
This commit is contained in:
@@ -3122,7 +3122,7 @@ void Spell::EffectTaunt(SpellEffIndex /*effIndex*/)
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_spellInfo->Id == 62124)
|
||||
if (m_spellInfo->Id == 62124 && (!unitTarget->IsPet() || !unitTarget->GetOwnerGUID().IsPlayer()))
|
||||
m_caster->CastSpell(unitTarget, 67485, true);
|
||||
|
||||
if (!unitTarget->getThreatManager().getOnlineContainer().empty())
|
||||
|
||||
Reference in New Issue
Block a user