mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-06 01:55:58 +00:00
Merge remote-tracking branch 'origin/miami' into lcs
* origin/miami: bug of the decade big oof colmodel fix
This commit is contained in:
commit
f73e870bde
|
@ -24,7 +24,6 @@ CColModel::CColModel(void)
|
|||
CColModel::~CColModel(void)
|
||||
{
|
||||
RemoveCollisionVolumes();
|
||||
RemoveTrianglePlanes();
|
||||
}
|
||||
|
||||
void*
|
||||
|
|
|
@ -106,7 +106,10 @@ int8 CRunningScript::ProcessCommands800To899(int32 command)
|
|||
printf("Couldn't find zone - %s\n", zone);
|
||||
return 0;
|
||||
}
|
||||
CTheZones::SetPedGroup(zone_id, ScriptParams[0], ScriptParams[1]);
|
||||
while (zone_id >= 0) {
|
||||
CTheZones::SetPedGroup(zone_id, ScriptParams[0], ScriptParams[1]);
|
||||
zone_id = CTheZones::FindNextZoneByLabelAndReturnIndex(zone, ZONE_INFO);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
case COMMAND_START_CAR_FIRE:
|
||||
|
|
|
@ -132,7 +132,7 @@ CPlayerInfo::Process(void)
|
|||
CAutomobile *car = (CAutomobile*)m_pPed->m_pMyVehicle;
|
||||
|
||||
if (car->m_nWheelsOnGround < 3)
|
||||
m_nTimeNotFullyOnGround += CTimer::GetTimeInMilliseconds();
|
||||
m_nTimeNotFullyOnGround += CTimer::GetTimeStepInMilliseconds();
|
||||
else
|
||||
m_nTimeNotFullyOnGround = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue