mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
f4473ccfd3
Fix #6232 cancelTLdeploy expects `[unit, mouse button key]`
23 lines
372 B
Plaintext
23 lines
372 B
Plaintext
/*
|
|
* Author: commy2
|
|
* Handle death.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [bob] call ace_tacticalladder_fnc_handleKilled
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit"];
|
|
|
|
if (!isNull GETMVAR(ladder,objNull) && {GVAR(ladder) in attachedObjects _unit}) then {
|
|
[_unit, 1] call FUNC(cancelTLdeploy);
|
|
};
|