Skip to content

Commit

Permalink
Added MH-47G to vehicles module (#1144)
Browse files Browse the repository at this point in the history
  • Loading branch information
pool011 authored Mar 2, 2024
1 parent 215dca8 commit bd0f9c4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ if (_vehicle iskindOf "vtx_MH60M") then {
[_vehicle] call FUNC(addEscapeWreck);
};

if (_vehicle iskindOf "TF373_SOAR_MH47G_Base") then {
[_vehicle] call FUNC(addLineJump);
[_vehicle] call FUNC(addEscapeWreck);
};




// Below functions only gets applied to approved factions
Expand Down
6 changes: 6 additions & 0 deletions cScripts/functions/vehicle/fn_vehicle_addInventory.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,12 @@ if (_vehicle iskindOf "Heli_Transport_02_base_F") then {
] call FUNC(addCargo);
};

if (_vehicle iskindOf "TF373_SOAR_MH47G_Base") then {
[_vehicle,
GET_CONTAINER("vehicle_heliTransport")
] call FUNC(addCargo);
};

if (_vehicle iskindOf "vtx_MH60M") then {
[_vehicle,
GET_CONTAINER(vehicle_heliTransport)
Expand Down

0 comments on commit bd0f9c4

Please sign in to comment.