mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fix medical vitals function calls
This commit is contained in:
parent
352d8cad31
commit
6eb9c7e940
@ -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 {
|
||||
|
@ -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 {
|
||||
|
@ -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 {
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
*/
|
||||
|
@ -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];
|
||||
};
|
||||
|
||||
|
@ -7,8 +7,8 @@
|
||||
* 1: Time since last update <NUMBER>
|
||||
* 2: Sync value? <BOOL>
|
||||
*
|
||||
* ReturnValue:
|
||||
* nothing
|
||||
* Return Value:
|
||||
* None
|
||||
*
|
||||
* Public: No
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user