Fix medical vitals function calls

This commit is contained in:
SilentSpike 2018-05-08 09:17:47 +01:00
parent 352d8cad31
commit 6eb9c7e940
7 changed files with 10 additions and 13 deletions

View File

@ -13,7 +13,7 @@ if (!local _unit) exitWith {
_unit setVariable [QGVAR(bloodVolume), _unit getVariable [QGVAR(bloodVolume), DEFAULT_BLOOD_VOLUME], true];
};
[_unit] call FUNC(handleUnitVitals);
[_unit] call EFUNC(medical_vitals,handleUnitVitals);
private _painLevel = GET_PAIN_PERCEIVED(_unit);
if (_painLevel > 0) then {

View File

@ -13,7 +13,7 @@ if (!local _unit) exitWith {
_unit setVariable [QGVAR(bloodVolume), _unit getVariable [QGVAR(bloodVolume), DEFAULT_BLOOD_VOLUME], true];
};
[_unit] call FUNC(handleUnitVitals);
[_unit] call EFUNC(medical_vitals,handleUnitVitals);
private _painLevel = GET_PAIN_PERCEIVED(_unit);
if (_painLevel > 0) then {

View File

@ -14,7 +14,7 @@ if (!local _unit) exitWith {
_unit setVariable [QGVAR(bloodVolume), _unit getVariable [QGVAR(bloodVolume), DEFAULT_BLOOD_VOLUME], true];
};
[_unit] call FUNC(handleUnitVitals);
[_unit] call EFUNC(medical_vitals,handleUnitVitals);
private _painLevel = GET_PAIN_PERCEIVED(_unit);
if (_painLevel > 0) then {

View File

@ -9,10 +9,7 @@
* None
*
* Example:
* [bob] call ACE_medical_fnc_handleUnitVitals
*
* Example:
* [player] call ace_medical_fnc_handleUnitVitals
* [player] call ace_medical_vitals_fnc_handleUnitVitals
*
* Public: No
*/

View File

@ -11,7 +11,7 @@
* Current Heart Rate <NUMBER>
*
* Example:
* [player, 1, false] call ace_medical_fnc_updateHeartRate
* [player, 1, false] call ace_medical_vitals_fnc_updateHeartRate
*
* Public: No
*/

View File

@ -7,8 +7,8 @@
* 1: Time since last update <NUMBER>
* 2: Sync value? <BOOL>
*
* ReturnValue:
* nothing
* Return Value:
* None
*
* Public: No
*/
@ -39,7 +39,7 @@ if (!(_adjustment isEqualTo [])) then {
_adjustment = _adjustment - [ObjNull];
_unit setVariable [QGVAR(painSupressAdjustments), _adjustment, (_syncValue || {_adjustment isEqualTo []})]; // always sync on last run
_unit setVariable [QGVAR(painSuppress), 0 max _painSupressAdjustment, _syncValue];
};

View File

@ -7,8 +7,8 @@
* 1: Time since last update <NUMBER>
* 2: Sync value? <BOOL>
*
* ReturnValue:
* nothing
* Return Value:
* None
*
* Public: No
*/