ACE3/addons/medical/functions/fnc_onWoundUpdateRequest.sqf

25 lines
553 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Handles an wound update request.
*
* Arguments:
* 0: The Unit <OBJECT>
* 1: Origin object <OBJECT>
*
* ReturnValue:
2015-08-22 14:25:10 +00:00
* None
*
* Public: Yes
*/
#include "script_component.hpp"
2015-04-30 06:17:26 +00:00
private ["_unit", "_openWounds", "_originOfrequest"];
2015-08-22 14:25:10 +00:00
params ["_unit", "_originOfrequest"];
if (local _unit && !(local _originOfrequest)) then {
_openWounds = _unit getvariable [QGVAR(openWounds), []];
{
["medical_propagateWound", [_originOfrequest], [_unit, _x]] call EFUNC(common,targetEvent);
2015-08-22 14:25:10 +00:00
} foreach _openWounds;
};