ACE3/addons/medical/functions/fnc_treatmentAdvanced_fullHeal.sqf

22 lines
445 B
Plaintext
Raw Normal View History

/**
* fn_heal.sqf
* @Descr: N/A
* @Author: Glowbal
*
* @Arguments: []
* @Return:
* @PublicAPI: false
*/
#include "script_component.hpp"
2015-09-03 13:49:49 +00:00
params ["_caller", "_target", "_selectionName", "_className", "_items"];
2016-02-18 01:54:43 +00:00
if (local _target) then {
["treatmentAdvanced_fullHealLocal", [_caller, _target]] call CBA_fnc_localEvent;
2016-02-18 01:54:43 +00:00
} else {
["treatmentAdvanced_fullHealLocal", [_caller, _target], _target] call CBA_fnc_targetEvent;
2016-02-18 01:54:43 +00:00
};
true;