ACE3/addons/trenches/functions/fnc_handleKilled.sqf

23 lines
332 B
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
/*
* Author: commy2
* Handle death.
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* None
*
* Example:
* [bob] call ace_trenches_fnc_handleKilled
*
* Public: No
*/
params ["_unit"];
2016-02-04 20:42:12 +00:00
if (_unit getVariable [QGVAR(isPlacing), false]) then {
[_unit] call FUNC(placeCancel);
};