From 3efc2caf96af46d73dc042e3e9c2a29ecb35dd84 Mon Sep 17 00:00:00 2001 From: Wyrserth Date: Sat, 20 Jul 2019 21:02:23 +0200 Subject: Script/SethekkHalls: fix gossip text and quest event for NPC Lakka in Sethekk Halls. (cherry picked from commit b8d86bba999684998da59f4765d7982cba30ec21) --- .../Outland/Auchindoun/SethekkHalls/boss_darkweaver_syth.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/server/scripts/Outland') 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 -- cgit v1.2.3