diff options
| author | Sorikoff <46191832+Sorikoff@users.noreply.github.com> | 2019-03-02 14:04:01 +0000 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2021-11-24 20:34:54 +0100 |
| commit | 956158d299b3264f883f49ac647154179182fbea (patch) | |
| tree | dfb0c68f056bc4674456553a99cf9456c85ff1ce /src/server/scripts/EasternKingdoms | |
| parent | ca02f3918f11940d6da5e62f18b8c03d2847e98d (diff) | |
Core/Movement: Allow using walk when chasing v2 (#23073)
* Allow walk when chasing
(cherry picked from commit dbadb6369cf0b6d394fffaa1dedc612dfb5cbe2a)
Diffstat (limited to 'src/server/scripts/EasternKingdoms')
| -rw-r--r-- | src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp index 1a9c39fa454..d23bdaded9a 100644 --- a/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp +++ b/src/server/scripts/EasternKingdoms/ScarletEnclave/chapter1.cpp @@ -676,7 +676,7 @@ struct npc_dark_rider_of_acherus : public ScriptedAI case EVENT_START_MOVING: me->SetTarget(_horseGUID); if (Creature* horse = ObjectAccessor::GetCreature(*me, _horseGUID)) - me->GetMotionMaster()->MoveChase(horse, {}, {}, true); + me->GetMotionMaster()->MoveChase(horse); _events.ScheduleEvent(EVENT_DESPAWN_HORSE, 5s); break; case EVENT_DESPAWN_HORSE: |
