fix(Scripts/Spells): Death and Decay not breaking Hungering Cold (#22573)

This commit is contained in:
Jelle Meeus
2025-07-26 20:12:49 -07:00
committed by GitHub
parent d2fb893f87
commit 24d1a4808f

View File

@@ -342,7 +342,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, true, 0, aurEff);
GetCaster()->CastCustomSpell(GetTarget(), SPELL_DK_DEATH_AND_DECAY_TRIGGER, &basePoints0, nullptr, nullptr, false, 0, aurEff);
}
}