mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-05 10:45:53 +00:00
fix
This commit is contained in:
parent
32ab01cd32
commit
df98d04d79
|
@ -793,6 +793,7 @@ int8 CRunningScript::ProcessCommands1300To1399(int32 command)
|
||||||
CVehicle* pVehicle = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
CVehicle* pVehicle = CPools::GetVehiclePool()->GetAt(ScriptParams[0]);
|
||||||
script_assert(pVehicle);
|
script_assert(pVehicle);
|
||||||
pVehicle->bIsFrozen = ScriptParams[1];
|
pVehicle->bIsFrozen = ScriptParams[1];
|
||||||
|
pVehicle->bInfiniteMass = ScriptParams[1];
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
case COMMAND_HAS_CHAR_BEEN_DAMAGED_BY_CHAR:
|
case COMMAND_HAS_CHAR_BEEN_DAMAGED_BY_CHAR:
|
||||||
|
@ -1104,6 +1105,7 @@ int8 CRunningScript::ProcessCommands1300To1399(int32 command)
|
||||||
CObject* pObject = CPools::GetObjectPool()->GetAt(ScriptParams[0]);
|
CObject* pObject = CPools::GetObjectPool()->GetAt(ScriptParams[0]);
|
||||||
script_assert(pObject);
|
script_assert(pObject);
|
||||||
pObject->bIsFrozen = ScriptParams[1];
|
pObject->bIsFrozen = ScriptParams[1];
|
||||||
|
pObject->bInfiniteMass = ScriptParams[1];
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
case COMMAND_SET_PLAYER_HAS_MET_DEBBIE_HARRY:
|
case COMMAND_SET_PLAYER_HAS_MET_DEBBIE_HARRY:
|
||||||
|
|
Loading…
Reference in a new issue