Skip to content

Commit c717ed0

Browse files
committed
Fixed logistics supports all dropping ammoboxes instead of intended action
1 parent 7a72ee7 commit c717ed0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/dynamic_menu.sqf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ if(support_supplydrop_available) then {
8787
};
8888

8989
if(support_paradrop_available) then {
90-
_text = ["Airborne troops (25 CP)", 3, '_null = [player] execVM ""support\ammobox.sqf""', 1] call menuItemFormatter;
90+
_text = ["Airborne troops (25 CP)", 3, '_null = [player] execVM ""support\paradrop.sqf""', 1] call menuItemFormatter;
9191
_logisticsItems pushBack _text;
9292
} else {
9393
_text = ["Airborne troops (N/A)", 3, '', 0] call menuItemFormatter;
@@ -103,15 +103,15 @@ if(support_pFLIR_available) then {
103103
};
104104

105105
if(support_uav_recon_available) then {
106-
_text = ["UAV Recon (3 CP)", 5, '_null = [player] execVM ""support\ammobox.sqf""', 1] call menuItemFormatter;
106+
_text = ["UAV Recon (3 CP)", 5, '_null = [player] execVM ""support\mapclickuav.sqf""', 1] call menuItemFormatter;
107107
_logisticsItems pushBack _text;
108108
} else {
109109
_text = ["UAV Recon (N/A)", 5, '', 0] call menuItemFormatter;
110110
_logisticsItems pushBack _text;
111111
};
112112

113113
if(support_veh_refit_available) then {
114-
_text = ["Vehicle Refit (2 CP)", 6, '_null = [player] execVM ""support\ammobox.sqf""', 1] call menuItemFormatter;
114+
_text = ["Vehicle Refit (2 CP)", 6, '_null = [player] execVM ""support\veh_refit.sqf""', 1] call menuItemFormatter;
115115
_logisticsItems pushBack _text;
116116
} else {
117117
_text = ["Vehicle Refit (N/A)", 6, '', 0] call menuItemFormatter;

0 commit comments

Comments
 (0)