mirror of
https://github.com/halpz/re3.git
synced 2025-07-15 11:08:14 +00:00
script 500-599 plus bugfix
This commit is contained in:
@ -996,6 +996,19 @@ CWorld::RemoveFallenCars(void)
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
CWorld::StopAllLawEnforcersInTheirTracks(void)
|
||||
{
|
||||
int poolSize = CPools::GetVehiclePool()->GetSize();
|
||||
for (int poolIndex = poolSize - 1; poolIndex >= 0; poolIndex--) {
|
||||
CVehicle* veh = CPools::GetVehiclePool()->GetSlot(poolIndex);
|
||||
if (veh) {
|
||||
if (veh->bIsLawEnforcer)
|
||||
veh->SetMoveSpeed(0.0f, 0.0f, 0.0f);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
CWorld::Process(void)
|
||||
{
|
||||
|
Reference in New Issue
Block a user