ACE3/addons/tripod/functions/fnc_handleKilled.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

23 lines
349 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2
* Handle death.
*
* Arguments:
* 0: Unit <OBJECT>
*
* Return Value:
* None
*
* Example:
* [bob] call ace_tripod_fnc_handleKilled
*
* Public: No
*/
params ["_unit"];
if (_unit getVariable [QGVAR(adjusting), false]) then {
_unit setVariable [QGVAR(adjusting), false, true];
};