From 76cee226090f18c3f5a7055db38d5c78d5192814 Mon Sep 17 00:00:00 2001 From: Ovahlord Date: Sun, 23 May 2021 13:27:20 +0200 Subject: [PATCH] Core/Spells: Pain and Suffering will now also recalculate the periodic tick interval of Shadow Word: Pain --- src/server/scripts/Spells/spell_priest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server/scripts/Spells/spell_priest.cpp b/src/server/scripts/Spells/spell_priest.cpp index de61ced8d9d..8431793d0a4 100644 --- a/src/server/scripts/Spells/spell_priest.cpp +++ b/src/server/scripts/Spells/spell_priest.cpp @@ -565,6 +565,7 @@ class spell_pri_pain_and_suffering_proc : public SpellScript if (AuraEffect* aurEff = GetHitUnit()->GetAuraEffect(SPELL_AURA_PERIODIC_DAMAGE, SPELLFAMILY_PRIEST, 0x8000, 0, 0, caster->GetGUID())) { aurEff->RecalculateAmount(caster); + aurEff->CalculatePeriodic(caster, false, false); aurEff->GetBase()->RefreshDuration(); } }