diff options
author | Aokromes <Aokromes@users.noreply.github.com> | 2016-12-01 15:48:13 +0100 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2016-12-01 11:48:13 -0300 |
commit | 190fdfdf63c0b42f5909e377e49e601e14ede8a1 (patch) | |
tree | 134aa220fbecbc24d8351f4c08c83dff0c3974ad /src | |
parent | d1765d92841b7a6854626fb50e50669dce9118d0 (diff) |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/server/game/Spells/SpellEffects.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp index 7afcf52172a..189f73d2a71 100644 --- a/src/server/game/Spells/SpellEffects.cpp +++ b/src/server/game/Spells/SpellEffects.cpp @@ -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()) |