mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-22 21:26:23 +00:00
fix(Scripts/MagisterTerrace): Implement missing Kaelthas text line (#21247)
This commit is contained in:
@@ -31,7 +31,8 @@ enum Says
|
||||
SAY_GRAVITY_LAPSE = 3,
|
||||
SAY_TIRED = 4,
|
||||
SAY_RECAST_GRAVITY = 5,
|
||||
SAY_DEATH = 6
|
||||
SAY_DEATH = 6,
|
||||
SAY_AGGRO_2 = 7
|
||||
};
|
||||
|
||||
enum Spells
|
||||
@@ -172,6 +173,7 @@ struct boss_felblood_kaelthas : public BossAI
|
||||
if (!_hasDoneIntro && me->IsWithinDistInMap(who, 40.0f) && who->IsPlayer())
|
||||
{
|
||||
Talk(SAY_AGGRO);
|
||||
Talk(SAY_AGGRO_2, 20s);
|
||||
_hasDoneIntro = true;
|
||||
_OOCScheduler.Schedule(35s, [this](TaskContext){
|
||||
me->SetReactState(REACT_AGGRESSIVE);
|
||||
|
||||
Reference in New Issue
Block a user