mirror of
https://github.com/GTAmodding/re3.git
synced 2024-12-25 05:45:40 +00:00
minor fix
This commit is contained in:
parent
41dac0773f
commit
d415c4edd3
1 changed files with 1 additions and 1 deletions
|
@ -7743,7 +7743,7 @@ int8 CRunningScript::ProcessCommands900To999(int32 command)
|
|||
CollectParameters(&m_nIp, 4);
|
||||
CObject* pObject = CPools::GetObjectPool()->GetAt(ScriptParams[0]);
|
||||
assert(pObject);
|
||||
pObject->SetMoveSpeed(pObject->GetMoveSpeed() + 0.02f * *(CVector*)&ScriptParams[1]);
|
||||
pObject->SetMoveSpeed(pObject->GetMoveSpeed() + METERS_PER_SECOND_TO_GAME_SPEED * *(CVector*)&ScriptParams[1]);
|
||||
return 0;
|
||||
}
|
||||
case COMMAND_DRAW_SPRITE:
|
||||
|
|
Loading…
Reference in a new issue