mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-13 00:59:16 +00:00
fixes
This commit is contained in:
parent
5ec46bcdfb
commit
16a5c2f676
|
@ -2280,7 +2280,7 @@ int8 CRunningScript::ProcessCommands100To199(int32 command)
|
|||
CCarCtrl::JoinCarWithRoadSystem(car);
|
||||
car->AutoPilot.m_nCarMission = MISSION_CRUISE;
|
||||
car->bEngineOn = true;
|
||||
car->AutoPilot.m_nCruiseSpeed = Max(car->AutoPilot.m_nCruiseSpeed, 6);
|
||||
car->AutoPilot.m_nCruiseSpeed = Max(1, car->AutoPilot.m_nCruiseSpeed);
|
||||
car->AutoPilot.m_nAntiReverseTimer = CTimer::GetTimeInMilliseconds();
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
#include "Text.h"
|
||||
#include "World.h"
|
||||
|
||||
#include <climits>
|
||||
|
||||
//TODO
|
||||
int32 CStats::SeagullsKilled;
|
||||
|
||||
|
|
Loading…
Reference in a new issue