summaryrefslogtreecommitdiffstats
path: root/src/vehicles/Automobile.cpp
diff options
context:
space:
mode:
authorerorcun <erayorcunus@gmail.com>2020-08-01 16:58:54 +0200
committerGitHub <noreply@github.com>2020-08-01 16:58:54 +0200
commitbda383c9cd8e1fafda3878801dbfacbf62949430 (patch)
treef71aaea5e1ffad4cb1584f6858e633d07373a651 /src/vehicles/Automobile.cpp
parentFix Win32 OAL build (diff)
parentnew opcodes, buyable properties, minor fixes (diff)
downloadre3-bda383c9cd8e1fafda3878801dbfacbf62949430.tar
re3-bda383c9cd8e1fafda3878801dbfacbf62949430.tar.gz
re3-bda383c9cd8e1fafda3878801dbfacbf62949430.tar.bz2
re3-bda383c9cd8e1fafda3878801dbfacbf62949430.tar.lz
re3-bda383c9cd8e1fafda3878801dbfacbf62949430.tar.xz
re3-bda383c9cd8e1fafda3878801dbfacbf62949430.tar.zst
re3-bda383c9cd8e1fafda3878801dbfacbf62949430.zip
Diffstat (limited to '')
-rw-r--r--src/vehicles/Automobile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vehicles/Automobile.cpp b/src/vehicles/Automobile.cpp
index b0dc98ad..3f329251 100644
--- a/src/vehicles/Automobile.cpp
+++ b/src/vehicles/Automobile.cpp
@@ -5577,7 +5577,7 @@ CAutomobile::TellHeliToGoToCoors(float x, float y, float z, uint8 speed)
void
CAutomobile::TellPlaneToGoToCoors(float x, float y, float z, uint8 speed)
{
- AutoPilot.m_nCarMission = MISSION_HELI_FLYTOCOORS;
+ AutoPilot.m_nCarMission = MISSION_PLANE_FLYTOCOORS;
AutoPilot.m_vecDestinationCoors.x = x;
AutoPilot.m_vecDestinationCoors.y = y;
AutoPilot.m_vecDestinationCoors.z = z;