diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Spells/spell_priest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_priest.cpp b/src/server/scripts/Spells/spell_priest.cpp index 2dc2c340cd8..776cf7f3671 100644 --- a/src/server/scripts/Spells/spell_priest.cpp +++ b/src/server/scripts/Spells/spell_priest.cpp @@ -1113,7 +1113,7 @@ class spell_pri_renew : public SpellScriptLoader if (AuraEffect const* empoweredRenewAurEff = caster->GetDummyAuraEffect(SPELLFAMILY_PRIEST, PRIEST_ICON_ID_EMPOWERED_RENEW_TALENT, EFFECT_1)) { int32 heal = aurEff->GetAmount(); - heal *= GetSpellInfo()->GetMaxTicks(); + heal *= aurEff->GetTotalTicks(); CastSpellExtraArgs args(aurEff); args.AddSpellBP0(CalculatePct(heal, empoweredRenewAurEff->GetAmount())); |