1
0
Fork 0
mirror of https://github.com/halpz/re3.git synced 2024-12-25 18:05:27 +00:00

Use SetMoveState

This commit is contained in:
Sergeanur 2020-12-15 04:25:12 +02:00
parent ac95138c18
commit e970e5f246

View file

@ -6413,7 +6413,7 @@ CPed::SetFollowPathStatic(void)
m_nLastPedState = oldLastState;
SetPedState(PED_FOLLOW_PATH);
m_nMoveState = m_followPathMoveState;
SetMoveState(m_followPathMoveState);
} else {
RestorePreviousState();
if (m_objective == OBJECTIVE_NONE) {
@ -6793,7 +6793,7 @@ CPed::SetFollowPathDynamic(void)
m_nLastPedState = oldLastState;
SetPedState(PED_FOLLOW_PATH);
m_nMoveState = m_followPathMoveState;
SetMoveState(m_followPathMoveState);
return true;
} else {