ACE3/addons/trenches/functions/fnc_handleInteractMenuOpened.sqf

20 lines
292 B
Plaintext
Raw Normal View History

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