mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
418 B
Plaintext
21 lines
418 B
Plaintext
|
/**
|
||
|
* fnc_onCarryObjectDropped.sqf
|
||
|
* @Descr: N/A
|
||
|
* @Author: Glowbal
|
||
|
*
|
||
|
* @Arguments: []
|
||
|
* @Return:
|
||
|
* @PublicAPI: false
|
||
|
*/
|
||
|
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
private ["_unit","_params"];
|
||
|
_unit = _this select 0;
|
||
|
|
||
|
[format["fnc_onCarryObjectDropped: %1",_this]] call EFUNC(common,debug);
|
||
|
|
||
|
_params = _unit getvariable QGVAR(onStartMovingUnitParams);
|
||
|
if (!isnil "_params") then {
|
||
|
_params call FUNC(handleDropUnit);
|
||
|
};
|