From 9d69c36bedd73c3c8dd330b9303171b13c0ce9ee Mon Sep 17 00:00:00 2001 From: Shauren Date: Tue, 29 Aug 2023 10:17:29 +0200 Subject: Scripts/Spells: Fixed Dark Reprimand not channeling --- src/server/scripts/Spells/spell_priest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/server/scripts/Spells/spell_priest.cpp b/src/server/scripts/Spells/spell_priest.cpp index 4c2ec215173..d6527473a8f 100644 --- a/src/server/scripts/Spells/spell_priest.cpp +++ b/src/server/scripts/Spells/spell_priest.cpp @@ -1593,10 +1593,10 @@ public: if (Unit* target = GetHitUnit()) { if (caster->IsFriendlyTo(target)) - caster->CastSpell(target, _healingSpellId, CastSpellExtraArgs(TRIGGERED_IGNORE_SPELL_AND_CATEGORY_CD) + caster->CastSpell(target, _healingSpellId, CastSpellExtraArgs(TRIGGERED_IGNORE_GCD | TRIGGERED_IGNORE_SPELL_AND_CATEGORY_CD) .SetTriggeringSpell(GetSpell())); else - caster->CastSpell(target, _damageSpellId, CastSpellExtraArgs(TRIGGERED_IGNORE_SPELL_AND_CATEGORY_CD) + caster->CastSpell(target, _damageSpellId, CastSpellExtraArgs(TRIGGERED_IGNORE_GCD | TRIGGERED_IGNORE_SPELL_AND_CATEGORY_CD) .SetTriggeringSpell(GetSpell())); } } -- cgit v1.2.3