fix(Scripts/Spells): Fix Death and Decay interrupting spellcasting (#22720)

This commit is contained in:
Andrew
2025-08-23 04:39:32 -03:00
committed by GitHub
parent efd7a00630
commit 3bdcd83f4a

View File

@@ -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);
}
}