diff --git a/addons/uh60_misc/functions/fnc_attachCRRC.sqf b/addons/uh60_misc/functions/fnc_attachCRRC.sqf index 223cccae..bcf5609e 100644 --- a/addons/uh60_misc/functions/fnc_attachCRRC.sqf +++ b/addons/uh60_misc/functions/fnc_attachCRRC.sqf @@ -15,4 +15,5 @@ if (!isNil "_attachedBoat") exitWith { if (count (crew _boat) > 0) exitWith {hint "Boat is not empty"}; _boat lock true; _boat attachTo [_helicopter, [0,1.5,-0.85]]; +_boat enableRopeAttach false; _helicopter setVariable ["vtx_crrc_attached", _boat, true]; diff --git a/addons/uh60_misc/functions/fnc_perFrame.sqf b/addons/uh60_misc/functions/fnc_perFrame.sqf index 99846f55..ee1d142f 100644 --- a/addons/uh60_misc/functions/fnc_perFrame.sqf +++ b/addons/uh60_misc/functions/fnc_perFrame.sqf @@ -27,5 +27,6 @@ if (!isNil "_attachedBoat") then { _attachedBoat lock false; _attachedBoat setVelocity (velocity _vehicle); _vehicle setVariable ["vtx_crrc_attached", nil, true]; + _attachedBoat enableRopeAttach true; }; };