From a2eee90f0d762a16d2f1448f7fc28960092a5517 Mon Sep 17 00:00:00 2001 From: Rocco Silipo <108557877+Rorschach91@users.noreply.github.com> Date: Thu, 13 Mar 2025 00:10:27 +0100 Subject: [PATCH] fix(Script/SunwellPlateau): Demonic Vapor Trail now despawn. (#21687) --- .../scripts/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp index 2c29cce45..b7e6e1fac 100644 --- a/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp +++ b/src/server/scripts/EasternKingdoms/SunwellPlateau/boss_felmyst.cpp @@ -394,6 +394,7 @@ struct npc_demonic_vapor_trail : public NullCreatureAI void Reset() override { me->CastSpell(me, SPELL_DEMONIC_VAPOR_TRAIL_PERIODIC, true); + me->DespawnOrUnsummon(20000); } void SpellHitTarget(Unit*, SpellInfo const* spellInfo) override