Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed bug were haloJump and lineJump script were mixed up #1226

Merged
merged 4 commits into from
Sep 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Update fn_vehicle_addFunctions.sqf
Fixed call to function.
Elemtael authored Sep 7, 2024
commit 61c6ba3c6b9a3f5bed69eef5b534fa62fe03d09e
8 changes: 4 additions & 4 deletions cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf
Original file line number Diff line number Diff line change
@@ -68,19 +68,19 @@ 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(addLineJump);
[_vehicle,nil,nil,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(addLineJump);
[_vehicle,nil,nil,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(addLineJump);
[_vehicle,nil,nil,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);
};
};