sync with upstream

This commit is contained in:
Nikolay Korolev 2020-05-17 21:48:21 +03:00
parent 3cc20d7962
commit d5d2f6a822
3 changed files with 0 additions and 13 deletions

View file

@ -1458,13 +1458,3 @@ CPacManPickups::ResetPowerPillsCarriedByPlayer()
FindPlayerVehicle()->m_fForceMultiplier = 1.0f;
}
}
bool
CPickups::TestForPickupsInBubble(CVector pos, float radius)
{
for (int i = 0; i < NUMPICKUPS; i++) {
if ((pos - aPickUps[i].m_vecPos).Magnitude() < radius)
return true;
}
return false;
}