aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts
diff options
context:
space:
mode:
authorariel- <ariel-@users.noreply.github.com>2018-01-13 20:43:21 -0300
committerariel- <ariel-@users.noreply.github.com>2018-01-13 20:49:43 -0300
commita3056617854ec3957ed57126e27c6b3bea066448 (patch)
tree1ef20c469cc6d8c480c323c5e40b59b23cb01834 /src/server/scripts
parent3b01cccd7eafaff9f3b8236a544e4fa46818926c (diff)
Core/Scripts: fix Sanctified Wrath
Diffstat (limited to 'src/server/scripts')
-rw-r--r--src/server/scripts/Spells/spell_paladin.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_paladin.cpp b/src/server/scripts/Spells/spell_paladin.cpp
index c105b9b68f8..e75fb3db34c 100644
--- a/src/server/scripts/Spells/spell_paladin.cpp
+++ b/src/server/scripts/Spells/spell_paladin.cpp
@@ -311,7 +311,8 @@ class spell_pal_avenging_wrath : public SpellScriptLoader
if (AuraEffect const* aurEff = target->GetAuraEffectOfRankedSpell(SPELL_PALADIN_SANCTIFIED_WRATH_TALENT_R1, EFFECT_2))
{
CastSpellExtraArgs args(aurEff);
- args.AddSpellBP0(aurEff->GetAmount());
+ args.AddSpellMod(SPELLVALUE_BASE_POINT0, aurEff->GetAmount())
+ .AddSpellMod(SPELLVALUE_BASE_POINT1, aurEff->GetAmount());
target->CastSpell(target, SPELL_PALADIN_SANCTIFIED_WRATH, args);
}
}