Skip to content

Commit

Permalink
fix(Scripts/Karazhan): Nightbane Speed (azerothcore#20838)
Browse files Browse the repository at this point in the history
fix(Scripts/Karazhan)NightbaneSpeed

revert speed to before 7e0dff5
  • Loading branch information
sogladev authored Dec 4, 2024
1 parent 47580c0 commit 3f5ac98
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ struct boss_nightbane : public BossAI
_triggerCountTakeOffWhileFlying = 0;
_airPhasesCompleted = 0;

me->SetSpeed(MOVE_RUN, me->GetCreatureTemplate()->speed_run);
me->SetSpeed(MOVE_RUN, 2.0f);
me->SetCanFly(true);
me->SetUnitFlag(UNIT_FLAG_NON_ATTACKABLE);
me->SetReactState(REACT_PASSIVE);
Expand Down Expand Up @@ -300,7 +300,6 @@ struct boss_nightbane : public BossAI
{
me->ClearUnitState(UNIT_STATE_IGNORE_PATHFINDING);
me->GetMotionMaster()->MovePoint(POINT_INTRO_LAND, introLandPos);
me->SetSpeed(MOVE_RUN, 2.0f);
}).Schedule(3s, [this](TaskContext /*context*/)
{
me->SetDisableGravity(false);
Expand Down

0 comments on commit 3f5ac98

Please sign in to comment.