summaryrefslogtreecommitdiffstats
path: root/src/control/Script.cpp
diff options
context:
space:
mode:
authoreray orçunus <erayorcunus@gmail.com>2019-10-03 03:02:02 +0200
committereray orçunus <erayorcunus@gmail.com>2019-10-03 03:02:02 +0200
commit0ee5a46f718889f545dc8cf2d4f5c54dd3956453 (patch)
tree8539a833e66752f756dd37d17eae07e944b28231 /src/control/Script.cpp
parentMerge pull request #216 from erorcun/erorcun (diff)
downloadre3-0ee5a46f718889f545dc8cf2d4f5c54dd3956453.tar
re3-0ee5a46f718889f545dc8cf2d4f5c54dd3956453.tar.gz
re3-0ee5a46f718889f545dc8cf2d4f5c54dd3956453.tar.bz2
re3-0ee5a46f718889f545dc8cf2d4f5c54dd3956453.tar.lz
re3-0ee5a46f718889f545dc8cf2d4f5c54dd3956453.tar.xz
re3-0ee5a46f718889f545dc8cf2d4f5c54dd3956453.tar.zst
re3-0ee5a46f718889f545dc8cf2d4f5c54dd3956453.zip
Diffstat (limited to 'src/control/Script.cpp')
-rw-r--r--src/control/Script.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/control/Script.cpp b/src/control/Script.cpp
index 885d1d47..1511b233 100644
--- a/src/control/Script.cpp
+++ b/src/control/Script.cpp
@@ -1707,7 +1707,7 @@ int8 CRunningScript::ProcessCommandsFrom100To199(int32 command)
ped->SetOrientation(0.0f, 0.0f, 0.0f);
CTheScripts::ClearSpaceForMissionEntity(pos, ped);
CWorld::Add(ped);
- ped->m_level = CTheZones::GetLevelFromPosition(pos);
+ ped->m_nZoneLevel = CTheZones::GetLevelFromPosition(pos);
CPopulation::ms_nTotalMissionPeds++;
ScriptParams[0] = CPools::GetPedPool()->GetIndex(ped);
StoreParameters(&m_nIp, 1);
@@ -1948,7 +1948,7 @@ int8 CRunningScript::ProcessCommandsFrom100To199(int32 command)
car->AutoPilot.m_nCruiseSpeed = car->AutoPilot.m_fMaxTrafficSpeed = 9.0f;
car->AutoPilot.m_nCurrentLane = car->AutoPilot.m_nNextLane = 0;
car->bEngineOn = false;
- car->m_level = CTheZones::GetLevelFromPosition(pos);
+ car->m_nZoneLevel = CTheZones::GetLevelFromPosition(pos);
car->bHasBeenOwnedByPlayer = true;
CWorld::Add(car);
handle = CPools::GetVehiclePool()->GetIndex(car);
@@ -2748,7 +2748,7 @@ int8 CRunningScript::ProcessCommandsFrom200To299(int32 command)
AnimationId anim = pVehicle->bLowVehicle ? ANIM_CAR_LSIT : ANIM_CAR_SIT;
pPed->m_pVehicleAnim = CAnimManager::BlendAnimation(pPed->GetClump(), ASSOCGRP_STD, anim, 100.0f);
pPed->StopNonPartialAnims();
- pPed->m_level = CTheZones::GetLevelFromPosition(pPed->GetPosition());
+ pPed->m_nZoneLevel = CTheZones::GetLevelFromPosition(pPed->GetPosition());
CWorld::Add(pPed);
ScriptParams[0] = CPools::GetPedPool()->GetIndex(pPed);
StoreParameters(&m_nIp, 1);