diff --git a/addons/fastroping/XEH_postInit.sqf b/addons/fastroping/XEH_postInit.sqf index 752ac2f756..2752e2dcde 100644 --- a/addons/fastroping/XEH_postInit.sqf +++ b/addons/fastroping/XEH_postInit.sqf @@ -7,3 +7,12 @@ [QGVAR(startFastRope), { [FUNC(fastRopeServerPFH), 0, _this] call CBA_fnc_addPerFrameHandler; }] call CBA_fnc_addEventHandler; + +["ACE3 Vehicles", QGVAR(cutRopes), localize LSTRING(Interaction_cutRopes), { + if ([vehicle ACE_player] call FUNC(canCutRopes)) then { + [vehicle ACE_player] call FUNC(cutRopes); + true + } else { + false + }; +}, {false}] call CBA_fnc_addKeybind;