aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent_Michael <Vincent_Michael@gmx.de>2014-02-09 19:15:17 +0100
committerVincent_Michael <Vincent_Michael@gmx.de>2014-02-09 19:15:17 +0100
commita5a6799b4e46456decbac09622f0bef0ac1976bb (patch)
treeaac69c98a8f8aa48347c46e456dff1624947ebb3
parent1d1aeda86ca69e78daf85c3c4b1b29509c374ad7 (diff)
Scripts: Added missing stuff in 1d1aeda86ca69e78daf85c3c4b1b29509c374ad7
-rw-r--r--src/server/scripts/Northrend/AzjolNerub/AzjolNerub/boss_krikthir_the_gatewatcher.cpp15
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
{