aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorariel- <ariel-@users.noreply.github.com>2018-01-18 18:13:38 -0300
committerariel- <ariel-@users.noreply.github.com>2018-01-18 18:13:38 -0300
commit7167edf27cbc1a93b0bb33a4279c48fdbb475611 (patch)
treed1a88688a4d69a51f949c3009a0361da3ed6fed9 /src
parentb8c281f497d5da2251b11ab09f182a23a5721a1c (diff)
Core/Scripts: fix Roar of Sacrifice
Diffstat (limited to 'src')
-rw-r--r--src/server/scripts/Spells/spell_hunter.cpp2
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