Skip to content

Commit cbae623

Browse files
committed
Removed FLIR from dynamic menu
FLIR is a user action rather than CommMenuItem
1 parent c717ed0 commit cbae623

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

source/dynamic_menu.sqf

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -94,27 +94,19 @@ if(support_paradrop_available) then {
9494
_logisticsItems pushBack _text;
9595
};
9696

97-
if(support_pFLIR_available) then {
98-
_text = ["Supply Drop (2 CP)", 4, '_null = [player] execVM ""support\ammobox.sqf""', 1] call menuItemFormatter;
99-
_logisticsItems pushBack _text;
100-
} else {
101-
_text = ["Supply Drop (N/A)", 4, '', 0] call menuItemFormatter;
102-
_logisticsItems pushBack _text;
103-
};
104-
10597
if(support_uav_recon_available) then {
106-
_text = ["UAV Recon (3 CP)", 5, '_null = [player] execVM ""support\mapclickuav.sqf""', 1] call menuItemFormatter;
98+
_text = ["UAV Recon (3 CP)", 4, '_null = [player] execVM ""support\mapclickuav.sqf""', 1] call menuItemFormatter;
10799
_logisticsItems pushBack _text;
108100
} else {
109-
_text = ["UAV Recon (N/A)", 5, '', 0] call menuItemFormatter;
101+
_text = ["UAV Recon (N/A)", 4, '', 0] call menuItemFormatter;
110102
_logisticsItems pushBack _text;
111103
};
112104

113105
if(support_veh_refit_available) then {
114-
_text = ["Vehicle Refit (2 CP)", 6, '_null = [player] execVM ""support\veh_refit.sqf""', 1] call menuItemFormatter;
106+
_text = ["Vehicle Refit (2 CP)", 5, '_null = [player] execVM ""support\veh_refit.sqf""', 1] call menuItemFormatter;
115107
_logisticsItems pushBack _text;
116108
} else {
117-
_text = ["Vehicle Refit (N/A)", 6, '', 0] call menuItemFormatter;
109+
_text = ["Vehicle Refit (N/A)", 5, '', 0] call menuItemFormatter;
118110
_logisticsItems pushBack _text;
119111
};
120112

0 commit comments

Comments
 (0)