diff options
author | ariel- <ariel-@users.noreply.github.com> | 2018-01-18 18:13:38 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2018-01-18 18:13:38 -0300 |
commit | 7167edf27cbc1a93b0bb33a4279c48fdbb475611 (patch) | |
tree | d1a88688a4d69a51f949c3009a0361da3ed6fed9 /src | |
parent | b8c281f497d5da2251b11ab09f182a23a5721a1c (diff) |
Core/Scripts: fix Roar of Sacrifice
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Spells/spell_hunter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_hunter.cpp b/src/server/scripts/Spells/spell_hunter.cpp index 91647a422a9..7e4d4b029a9 100644 --- a/src/server/scripts/Spells/spell_hunter.cpp +++ b/src/server/scripts/Spells/spell_hunter.cpp @@ -1291,7 +1291,7 @@ class spell_hun_roar_of_sacrifice : public SpellScriptLoader CastSpellExtraArgs args(aurEff); args.AddSpellBP0(CalculatePct(eventInfo.GetDamageInfo()->GetDamage(), aurEff->GetAmount())); - eventInfo.GetActor()->CastSpell(GetCaster(), SPELL_ROAR_OF_SACRIFICE_TRIGGERED, args); + eventInfo.GetActionTarget()->CastSpell(GetCaster(), SPELL_ROAR_OF_SACRIFICE_TRIGGERED, args); } void Register() override |