Simplify reco() not to pass useless flags to pln_arm()

Flags P_S and P_I have no effect.
This commit is contained in:
Markus Armbruster 2009-09-13 21:13:31 -04:00
parent e2580b4005
commit 79154bf0fc

View file

@ -97,7 +97,7 @@ reco(void)
/*
* now arm and equip the bombers, transports, whatever.
*/
pln_arm(&bomb_list, ap_to_target, 'r', NULL, P_S | P_I);
pln_arm(&bomb_list, ap_to_target, 'r', NULL, 0);
if (QEMPTY(&bomb_list)) {
pr("No planes could be equipped for the mission.\n");
return RET_FAIL;