diff --git a/addons/cargo/functions/fnc_unloadItem.sqf b/addons/cargo/functions/fnc_unloadItem.sqf index c07cd44088..ac79b895ac 100644 --- a/addons/cargo/functions/fnc_unloadItem.sqf +++ b/addons/cargo/functions/fnc_unloadItem.sqf @@ -10,7 +10,7 @@ * 3: Deploy parameters (default: []) * - 0: Position AGL * - 1: Direction - * 4: Unload only if stable (default: true) (Applies only of arguemnt 3 is default) + * 4: Unload only if stable (default: true) (Applies only if arguemnt 3 is default) * * Return Value: * Object unloaded @@ -21,7 +21,7 @@ * Public: Yes */ -params [["_item", "", [objNull, ""]],["_vehicle", objNull, [objNull]],["_unloader", objNull, [objNull]],["_deploy", []],["_checkVehicleIsStable", true [true]]]; +params [["_item", "", [objNull, ""]],["_vehicle", objNull, [objNull]],["_unloader", objNull, [objNull]],["_deploy", []],["_checkVehicleIsStable", true, [true]]]; _deploy params ["_emptyPosAGL", "_direction"]; TRACE_5("params",_item,_vehicle,_unloader,_deploy,_checkVehicleIsStable);