diff options
| -rw-r--r-- | src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp | 15 | 
1 files changed, 12 insertions, 3 deletions
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              {  | 
