diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_darkweaver_syth.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_darkweaver_syth.cpp b/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_darkweaver_syth.cpp index 12b77280444..8cbd1a991c0 100644 --- a/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_darkweaver_syth.cpp +++ b/src/server/scripts/Outland/Auchindoun/SethekkHalls/boss_darkweaver_syth.cpp @@ -63,6 +63,12 @@ enum Events EVENT_CHAIN_LIGHTNING = 5 }; +enum Lakka +{ + NPC_LAKKA = 18956, + SAY_LAKKA_FREE = 1 +}; + class boss_darkweaver_syth : public CreatureScript { public: @@ -104,6 +110,9 @@ public: { _JustDied(); Talk(SAY_DEATH); + + if (Creature* lakka = me->FindNearestCreature(NPC_LAKKA, 500.0f, true)) + lakka->AI()->Talk(SAY_LAKKA_FREE); } void KilledUnit(Unit* who) override |