From 7bf9f3112e65df771569ecbe71c7678ab903a0d0 Mon Sep 17 00:00:00 2001 From: Dedmen Miller Date: Sun, 10 Oct 2021 16:03:50 +0200 Subject: [PATCH] Attach - Follow bone rotation for attached items (#8477) --- addons/attach/functions/fnc_attach.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/attach/functions/fnc_attach.sqf b/addons/attach/functions/fnc_attach.sqf index 7eaeab9a1d..a6f091a689 100644 --- a/addons/attach/functions/fnc_attach.sqf +++ b/addons/attach/functions/fnc_attach.sqf @@ -38,7 +38,7 @@ private _onAttachText = format [localize LSTRING(Item_Attached), _onAttachText]; if (_unit == _attachToVehicle) then { //Self Attachment private _attachedItem = _itemVehClass createVehicle [0,0,0]; - _attachedItem attachTo [_unit, [0.05, -0.09, 0.1], "leftshoulder"]; + _attachedItem attachTo [_unit, [0.07, -0.06, 0.085], "leftshoulder", true]; if (!_silentScripted) then { _unit removeItem _itemClassname; // Remove item [_onAttachText, 2] call EFUNC(common,displayTextStructured);