Skip to content

Commit

Permalink
Spell: Fix Kael'Thas Flamestrike exploding immediately
Browse files Browse the repository at this point in the history
  • Loading branch information
insunaa authored and killerwife committed Sep 18, 2024
1 parent f1eb6da commit d62ae54
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1397,6 +1397,8 @@ struct FlameStrikeKael : public AuraScript
{
void OnApply(Aura* aura, bool apply) const override
{
if (apply)
return;
aura->GetTarget()->CastSpell(nullptr, 36731, TRIGGERED_OLD_TRIGGERED, nullptr, aura);
if (aura->GetTarget()->IsCreature())
static_cast<Creature*>(aura->GetTarget())->ForcedDespawn(10000);
Expand Down

0 comments on commit d62ae54

Please sign in to comment.