small refactoring

This commit is contained in:
Nikolay Korolev 2021-08-20 17:49:51 +03:00
parent ef0b5f857d
commit aa104bb0aa

View File

@ -773,8 +773,8 @@ CCarCtrl::PossiblyRemoveVehicle(CVehicle* pVehicle)
delete pVehicle; delete pVehicle;
return; return;
} }
if (pVehicle->GetStatus() != STATUS_WRECKED || pVehicle->m_nTimeOfDeath == 0) if (pVehicle->GetStatus() == STATUS_WRECKED) {
return; if (pVehicle->m_nTimeOfDeath != 0) {
if (CTimer::GetTimeInMilliseconds() > pVehicle->m_nTimeOfDeath + 60000 && if (CTimer::GetTimeInMilliseconds() > pVehicle->m_nTimeOfDeath + 60000 &&
!(pVehicle->GetIsOnScreen() && CRenderer::IsEntityCullZoneVisible(pVehicle))) { !(pVehicle->GetIsOnScreen() && CRenderer::IsEntityCullZoneVisible(pVehicle))) {
if ((pVehicle->GetPosition() - vecPlayerPos).MagnitudeSqr() > SQR(7.5f)) { if ((pVehicle->GetPosition() - vecPlayerPos).MagnitudeSqr() > SQR(7.5f)) {
@ -785,6 +785,8 @@ CCarCtrl::PossiblyRemoveVehicle(CVehicle* pVehicle)
} }
} }
} }
}
}
int32 int32
CCarCtrl::CountCarsOfType(int32 mi) CCarCtrl::CountCarsOfType(int32 mi)