aboutsummaryrefslogtreecommitdiff
path: root/src/server/scripts/Battlegrounds
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2024-06-21 15:35:12 +0200
committerOvahlord <dreadkiller@gmx.de>2024-06-23 23:48:49 +0200
commitbab83b91d92c568b96d624cd048b23e48ae68a18 (patch)
tree89b6d001ce77cdb8288969db746c6ba57e11651e /src/server/scripts/Battlegrounds
parent59c1beeb4c08cec6bc936148b56a1a30b3b05817 (diff)
Core/Movement: Allow setting position or object facing targets for jump movement
(cherry picked from commit ac73edc268bc8d5bbda9f4b05168e3e24c25ca45) # Conflicts: # src/server/scripts/Kalimdor/RagefireChasm/boss_lava_guard_gordoth.cpp
Diffstat (limited to 'src/server/scripts/Battlegrounds')
-rw-r--r--src/server/scripts/Battlegrounds/IsleOfConquest/isle_of_conquest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/scripts/Battlegrounds/IsleOfConquest/isle_of_conquest.cpp b/src/server/scripts/Battlegrounds/IsleOfConquest/isle_of_conquest.cpp
index 357e7bba238..460572978d5 100644
--- a/src/server/scripts/Battlegrounds/IsleOfConquest/isle_of_conquest.cpp
+++ b/src/server/scripts/Battlegrounds/IsleOfConquest/isle_of_conquest.cpp
@@ -258,7 +258,7 @@ class StartLaunchEvent : public BasicEvent
float dist = player->GetExactDist2d(&_pos);
player->ExitVehicle();
- player->GetMotionMaster()->MoveJump(_pos, dist, speedZ, EVENT_JUMP, true);
+ player->GetMotionMaster()->MoveJump(_pos, dist, speedZ, EVENT_JUMP, _pos.GetOrientation());
return true;
}