diff options
author | aap <aap@papnet.eu> | 2021-01-08 01:44:19 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2021-01-08 01:44:19 +0100 |
commit | d820df0dbe2301928c8c1e5bf5c368f635a131f5 (patch) | |
tree | 07fc300faa61f009bca1ef22cab09434c469b860 /src/peds/Population.cpp | |
parent | Fix gOneShotCol (diff) | |
download | re3-d820df0dbe2301928c8c1e5bf5c368f635a131f5.tar re3-d820df0dbe2301928c8c1e5bf5c368f635a131f5.tar.gz re3-d820df0dbe2301928c8c1e5bf5c368f635a131f5.tar.bz2 re3-d820df0dbe2301928c8c1e5bf5c368f635a131f5.tar.lz re3-d820df0dbe2301928c8c1e5bf5c368f635a131f5.tar.xz re3-d820df0dbe2301928c8c1e5bf5c368f635a131f5.tar.zst re3-d820df0dbe2301928c8c1e5bf5c368f635a131f5.zip |
Diffstat (limited to '')
-rw-r--r-- | src/peds/Population.cpp | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/peds/Population.cpp b/src/peds/Population.cpp index 7314080b..f886597f 100644 --- a/src/peds/Population.cpp +++ b/src/peds/Population.cpp @@ -558,11 +558,8 @@ CPopulation::AddToPopulation(float minDist, float maxDist, float minDistOffScree // Taxi side mission if (CTheScripts::IsPlayerOnAMission()) { CPed *player = FindPlayerPed(); - if (player && player->InVehicle()) { - int32 model = player->m_pMyVehicle->GetModelIndex(); - if (model == MI_TAXI || model == MI_CABBIE || model == MI_ZEBRA || model == MI_KAUFMAN) - missionAndWeatherMult = 1.0f; - } + if (player && player->InVehicle() && player->m_pMyVehicle->IsTaxi()) + missionAndWeatherMult = 1.0f; } if (CDarkel::FrenzyOnGoing()) missionAndWeatherMult = 1.0f; @@ -843,7 +840,7 @@ CPopulation::AddPedInCar(CVehicle* car, bool isDriver) pedType = PEDTYPE_COP; break; default: - if (car->GetModelIndex() == MI_TAXI || car->GetModelIndex() == MI_CABBIE || car->GetModelIndex() == MI_ZEBRA || car->GetModelIndex() == MI_KAUFMAN) { + if (car->IsTaxi()) { if (isDriver) { pedType = PEDTYPE_CIVMALE; preferredModel = MI_TAXI_D; |