ACE3/addons/medical/functions/fnc_addToInjuredCollection.sqf
Thomas Kooi dce0b61d57 Added damage threshold module
Removed debug prints
2015-01-22 23:29:18 +01:00

30 lines
712 B
Plaintext

/**
* fnc_addToInjuredCollection.sqf
* @Descr: N/A
* @Author: Glowbal
*
* @Arguments: []
* @Return:
* @PublicAPI: false
*/
#include "script_component.hpp"
private "_unit";
_unit = _this select 0;
if !(local _unit) exitwith{
[[_unit], QUOTE(FUNC(addToInjuredCollection)), _unit] call EFUNC(common,execRemoteFnc);
};
if !(_unit getvariable[QGVAR(addedToUnitLoop),false]) then{
_unit setvariable [QGVAR(addedToUnitLoop),true, true];
};
if ([_unit] call FUNC(hasMedicalEnabled)) then {
if (isnil QGVAR(injuredUnitCollection)) then {
GVAR(injuredUnitCollection) = [];
};
if (_unit in GVAR(injuredUnitCollection)) exitwith {};
GVAR(injuredUnitCollection) pushback _unit;
};