mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
dce0b61d57
Removed debug prints
30 lines
712 B
Plaintext
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;
|
|
};
|