diff options
author | Andrew <47818697+Nyeriah@users.noreply.github.com> | 2025-08-23 04:39:32 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-23 09:39:32 +0200 |
commit | 3bdcd83f4a2e4d9c1db34b7d9497e1c9120fc28b (patch) | |
tree | 10231af912c46d593995d37e56ede2e354669997 /src | |
parent | efd7a006306ba8da1da822022708fd08926bc1c9 (diff) |
fix(Scripts/Spells): Fix Death and Decay interrupting spellcasting (#22720)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Spells/spell_dk.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Spells/spell_dk.cpp b/src/server/scripts/Spells/spell_dk.cpp index d1d3717106..b2d312a5a6 100644 --- a/src/server/scripts/Spells/spell_dk.cpp +++ b/src/server/scripts/Spells/spell_dk.cpp @@ -345,7 +345,7 @@ class spell_dk_death_and_decay_aura : public AuraScript if (GetCaster() && GetTarget()) { int32 basePoints0 = aurEff->GetAmount(); - GetCaster()->CastCustomSpell(GetTarget(), SPELL_DK_DEATH_AND_DECAY_TRIGGER, &basePoints0, nullptr, nullptr, false, 0, aurEff); + GetCaster()->CastCustomSpell(GetTarget(), SPELL_DK_DEATH_AND_DECAY_TRIGGER, &basePoints0, nullptr, nullptr, true, 0, aurEff); } } |