File tree Expand file tree Collapse file tree
src/server/scripts/Outland/CoilfangReservoir/SerpentShrine Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ struct boss_fathomguard_sharkkis : public FathomGuardBaseAI
321321 DoCastSelf (SPELL_POWER_OF_SHARKKIS );
322322 }
323323
324- void ExecuteEvent (uint32 eventId)
324+ void ExecuteEvent (uint32 eventId) override
325325 {
326326 switch (eventId)
327327 {
@@ -372,7 +372,7 @@ struct boss_fathomguard_tidalvess : public FathomGuardBaseAI
372372 DoCastSelf (SPELL_POWER_OF_TIDALVESS );
373373 }
374374
375- void ExecuteEvent (uint32 eventId)
375+ void ExecuteEvent (uint32 eventId) override
376376 {
377377 switch (eventId)
378378 {
@@ -416,7 +416,7 @@ struct boss_fathomguard_caribdis : public FathomGuardBaseAI
416416 DoCastSelf (SPELL_POWER_OF_CARIBDIS );
417417 }
418418
419- void ExecuteEvent (uint32 eventId)
419+ void ExecuteEvent (uint32 eventId) override
420420 {
421421 switch (eventId)
422422 {
Original file line number Diff line number Diff line change @@ -44,9 +44,13 @@ class spell_serpent_shrine_coilfang_water : public AuraScript
4444
4545 if (InstanceScript* instance = target->GetInstanceScript ())
4646 if (instance->GetData (DATA_KILLED_ELITES ) < MIN_KILLED_ELITES )
47+ {
4748 target->CastSpell (nullptr , SPELL_FRENZY_WATER_PERIODIC , true );
49+ }
4850 else
51+ {
4952 target->CastSpell (nullptr , SPELL_SCALDING_WATER , true );
53+ }
5054 }
5155
5256 void AfterRemove (AuraEffect const * /* aurEff*/ , AuraEffectHandleModes /* mode*/ )
You can’t perform that action at this time.
0 commit comments