mirror of
https://github.com/halpz/re3.git
synced 2025-07-05 00:20:44 +00:00
Little fix
This commit is contained in:
@ -146,7 +146,7 @@ LetThemFollowYou(void) {
|
||||
CPed *nearPed = player->m_nearPeds[i];
|
||||
if (nearPed && !nearPed->IsPlayer()) {
|
||||
nearPed->SetObjective(OBJECTIVE_FOLLOW_PED_IN_FORMATION, (void*)player);
|
||||
nearPed->m_pedFormation = (eFormation)(rand() & 7);
|
||||
nearPed->m_pedFormation = (eFormation)(1 + (rand() & 7));
|
||||
nearPed->bScriptObjectiveCompleted = false;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user