CPopulation 2
This commit is contained in:
@@ -41,6 +41,14 @@ CPedPlacement::IsPositionClearOfCars(CVector* pos)
|
||||
return CWorld::TestSphereAgainstWorld(*pos, 0.25f, nil, true, true, false, false, false, false);
|
||||
}
|
||||
|
||||
bool
|
||||
CPedPlacement::IsPositionClearForPed(CVector* pos)
|
||||
{
|
||||
int16 count;
|
||||
CWorld::FindObjectsKindaColliding(*pos, 0.75f, true, &count, 2, nil, false, true, true, false, false);
|
||||
return count == 0;
|
||||
}
|
||||
|
||||
STARTPATCHES
|
||||
InjectHook(0x4EE340, &CPedPlacement::FindZCoorForPed, PATCH_JUMP);
|
||||
InjectHook(0x4EE310, &CPedPlacement::IsPositionClearOfCars, PATCH_JUMP);
|
||||
|
||||
Reference in New Issue
Block a user