From 15c1a84b4b015fec5058509e38003650905d3df2 Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 25 May 2025 22:42:51 +0200 Subject: Scripts/Spells: Fixed Demonic talent starting Metamorphosis cooldown for Vengeance demon hunters --- src/server/scripts/Spells/spell_dh.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/server/scripts/Spells/spell_dh.cpp b/src/server/scripts/Spells/spell_dh.cpp index 8808655cd23..f5e27f9da75 100644 --- a/src/server/scripts/Spells/spell_dh.cpp +++ b/src/server/scripts/Spells/spell_dh.cpp @@ -755,7 +755,9 @@ class spell_dh_demonic : public SpellScript SpellCastTargets targets; targets.SetUnitTarget(caster); - Spell* spell = new Spell(caster, sSpellMgr->AssertSpellInfo(_transformSpellId, DIFFICULTY_NONE), TRIGGERED_IGNORE_CAST_IN_PROGRESS | TRIGGERED_DONT_REPORT_CAST_ERROR, ObjectGuid::Empty, GetSpell()->m_castId); + Spell* spell = new Spell(caster, sSpellMgr->AssertSpellInfo(_transformSpellId, DIFFICULTY_NONE), + TRIGGERED_IGNORE_SPELL_AND_CATEGORY_CD | TRIGGERED_IGNORE_CAST_IN_PROGRESS | TRIGGERED_DONT_REPORT_CAST_ERROR, + ObjectGuid::Empty, GetSpell()->m_castId); spell->m_SpellVisual.SpellXSpellVisualID = 0; spell->m_SpellVisual.ScriptVisualID = 0; spell->SetSpellValue({ SPELLVALUE_DURATION, duration }); -- cgit v1.2.3