From 89ecb82c4deb86b27b170a0fb2726e6f1a58ede7 Mon Sep 17 00:00:00 2001 From: Bethea Date: Mon, 9 Sep 2024 08:24:01 -0500 Subject: [PATCH] Fixed bug were haloJump and lineJump script were mixed up (#1226) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Broström.A | Evul --- .../functions/vehicle/fn_vehicle_addFunctions.sqf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf b/cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf index 9ecfdd777..462b7409f 100644 --- a/cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf +++ b/cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf @@ -68,20 +68,20 @@ if (_vehicle iskindOf "Heli_Transport_02_base_F") then { }; if (_vehicle iskindOf "RHS_C130J_Base") then { - [_vehicle,nil,nil,true] call FUNC(addLineJump); - [_vehicle,nil,nil,nil,nil,true] call FUNC(addHaloJump); + [_vehicle,nil,nil,nil,nil,true] call FUNC(addLineJump); + [_vehicle,nil,nil,true] call FUNC(addHaloJump); [_vehicle] call FUNC(addEscapeWreck); }; if (_vehicle iskindOf "USAF_C130J") then { - [_vehicle,nil,nil,true] call FUNC(addLineJump); - [_vehicle,nil,nil,nil,nil,true] call FUNC(addHaloJump); + [_vehicle,nil,nil,nil,nil,true] call FUNC(addLineJump); + [_vehicle,nil,nil,true] call FUNC(addHaloJump); [_vehicle] call FUNC(addEscapeWreck); }; if (_vehicle iskindOf "USAF_C17") then { - [_vehicle,nil,nil,true] call FUNC(addLineJump); - [_vehicle,nil,nil,nil,nil,true] call FUNC(addHaloJump); + [_vehicle,nil,nil,nil,nil,true] call FUNC(addLineJump); + [_vehicle,nil,nil,true] call FUNC(addHaloJump); [_vehicle] call FUNC(addEscapeWreck); }; @@ -115,4 +115,4 @@ if (_vehicle iskindOf "cav_dragoon_base_F") then { if (_vehicle iskindOf "AFV_Wheeled_01_base_F") then { [_vehicle] call EFUNC(vehicle,addFlagAction); -}; \ No newline at end of file +};