refactor(Scripts/World): Clean up script files (#17728)

* refactor(Scripts/World): Clean up script files

* Update boss_azuregos.cpp
This commit is contained in:
Andrew
2023-11-16 14:00:42 -03:00
committed by GitHub
parent 0d8b1d4942
commit a5b5278929
4 changed files with 19 additions and 25 deletions

View File

@@ -56,7 +56,7 @@ public:
void Reset() override
{
_scheduler.CancelAll();
scheduler.CancelAll();
_inBerserk = false;
}
@@ -68,7 +68,7 @@ public:
void JustEngagedWith(Unit* /*who*/) override
{
Talk(SAY_AGGRO);
_scheduler.Schedule(6s, 10s, [this](TaskContext context)
scheduler.Schedule(6s, 10s, [this](TaskContext context)
{
DoCastVictim(SPELL_SHADOW_VOLLEY);
context.Repeat(4s, 6s);
@@ -132,7 +132,7 @@ public:
if (!UpdateVictim())
return;
_scheduler.Update(diff);
scheduler.Update(diff);
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
@@ -140,7 +140,6 @@ public:
}
private:
TaskScheduler _scheduler;
bool _inBerserk;
};

View File

@@ -50,7 +50,7 @@ public:
void Reset() override
{
_inEnrage = false;
_scheduler.CancelAll();
scheduler.CancelAll();
}
void KilledUnit(Unit* victim) override
@@ -73,7 +73,7 @@ public:
void JustEngagedWith(Unit* /*who*/) override
{
Talk(SAY_AGGRO);
_scheduler.Schedule(1ms, [this](TaskContext context)
scheduler.Schedule(1ms, [this](TaskContext context)
{
if (!HealthAbovePct(20))
{
@@ -129,7 +129,7 @@ public:
if (!UpdateVictim())
return;
_scheduler.Update(diff);
scheduler.Update(diff);
if (me->HasUnitState(UNIT_STATE_CASTING))
return;
@@ -137,7 +137,6 @@ public:
}
private:
TaskScheduler _scheduler;
bool _inEnrage;
};