Skip to content

Commit c7f8529

Browse files
committed
upd
1 parent ab60bae commit c7f8529

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/boss_fathomlord_karathress.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
{

src/server/scripts/Outland/CoilfangReservoir/SerpentShrine/serpent_shrine.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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*/)

0 commit comments

Comments
 (0)