Skip to content

Commit

Permalink
Update send_paratroopers.sqf
Browse files Browse the repository at this point in the history
Add assignAsCargo cause sometime helicopter landing and never trips.
  • Loading branch information
Apricot-ale committed Jul 3, 2024
1 parent 79be063 commit 4a0e83d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ while {(count (units _para_group)) < 8} do {
[KPLIB_o_paratrooper, markerPos _spawnsector, _para_group] call KPLIB_fnc_createManagedUnit;
};

{removeBackpack _x; _x addBackPack "B_parachute"; _x moveInCargo _newvehicle;} forEach (units _para_group);
{removeBackpack _x; _x addBackPack "B_parachute"; _x moveInCargo _newvehicle; _x assignAsCargo _newvehicle;} forEach (units _para_group);

while {(count (waypoints _pilot_group)) != 0} do {deleteWaypoint ((waypoints _pilot_group) select 0);};
while {(count (waypoints _para_group)) != 0} do {deleteWaypoint ((waypoints _para_group) select 0);};
Expand Down

0 comments on commit 4a0e83d

Please sign in to comment.