From a5a6799b4e46456decbac09622f0bef0ac1976bb Mon Sep 17 00:00:00 2001 From: Vincent_Michael Date: Sun, 9 Feb 2014 19:15:17 +0100 Subject: Scripts: Added missing stuff in 1d1aeda86ca69e78daf85c3c4b1b29509c374ad7 --- .../AzjolNerub/boss_krikthir_the_gatewatcher.cpp | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp index d0e1103c5df..19e6b55b5c5 100644 --- a/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp +++ b/src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp @@ -422,7 +422,10 @@ class npc_watcher_gashra : public CreatureScript struct npc_watcher_gashraAI : public ScriptedAI { - npc_watcher_gashraAI(Creature* creature) : ScriptedAI(creature) { } + npc_watcher_gashraAI(Creature* creature) : ScriptedAI(creature) + { + _instance = creature->GetInstanceScript(); + } void Reset() OVERRIDE { @@ -492,7 +495,10 @@ class npc_watcher_narjil : public CreatureScript struct npc_watcher_narjilAI : public ScriptedAI { - npc_watcher_narjilAI(Creature* creature) : ScriptedAI(creature) { } + npc_watcher_narjilAI(Creature* creature) : ScriptedAI(creature) + { + _instance = creature->GetInstanceScript(); + } void Reset() OVERRIDE { @@ -566,7 +572,10 @@ class npc_watcher_silthik : public CreatureScript struct npc_watcher_silthikAI : public ScriptedAI { - npc_watcher_silthikAI(Creature* creature) : ScriptedAI(creature) { } + npc_watcher_silthikAI(Creature* creature) : ScriptedAI(creature) + { + _instance = creature->GetInstanceScript(); + } void Reset() OVERRIDE { -- cgit v1.2.3