From dc7cfab06f4a8827fff84570f1bff6195bd889fc Mon Sep 17 00:00:00 2001 From: commy2 Date: Tue, 17 Mar 2015 15:45:34 +0100 Subject: [PATCH] change default carry position --- addons/dragging/functions/fnc_setCarryable.sqf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/dragging/functions/fnc_setCarryable.sqf b/addons/dragging/functions/fnc_setCarryable.sqf index 52de076982..d1dd9cf1a9 100644 --- a/addons/dragging/functions/fnc_setCarryable.sqf +++ b/addons/dragging/functions/fnc_setCarryable.sqf @@ -6,7 +6,7 @@ * Argument: * 0: Any object (Object) * 1: true to enable carrying, false to disable (Bool) - * 2: Position offset for attachTo command (Array, optinal; default: [0,0,0]) + * 2: Position offset for attachTo command (Array, optinal; default: [0,1,1]) * 3: Direction in degree to rotate the object after attachTo (Number, optional; default: 0) * * Return value: @@ -24,7 +24,7 @@ _position = _this select 2; _direction = _this select 3; if (isNil "_position") then { - _position = _object getVariable [QGVAR(carryPosition), [0,0,0]]; + _position = _object getVariable [QGVAR(carryPosition), [0,1,1]]; }; if (isNil "_direction") then {