ACE3/addons/tacticalladder/functions/fnc_handleUnconscious.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

25 lines
422 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2
* Handle unconsciousness.
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* None
*
* Example:
* [bob] call ace_tacticalladder_fnc_handleUnconscious
*
* Public: No
*/
params ["_unit"];
if (!local _unit) exitWith {};
if (!isNull GETMVAR(ladder,objNull) && {GVAR(ladder) in attachedObjects _unit}) then {
[_unit, 1] call FUNC(cancelTLdeploy);
};