]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/drop.c
Pass only PM_* mission flags to ac_encounter()
[empserver] / src / lib / commands / drop.c
index 7c8dcaf3bea77d73d9e5f25561c5e72866000643..2c8806eb4afcd5c8b0590f1ab705b1250ba05515 100644 (file)
@@ -42,7 +42,6 @@
 int
 drop(void)
 {
-    int mission_flags;
     coord tx, ty;
     coord ax, ay;
     int ap_to_target;
@@ -97,7 +96,6 @@ drop(void)
     /*
      * select planes within range
      */
-    mission_flags = 0;
     pln_sel(&ni_bomb, &bomb_list, &ap_sect, ap_to_target,
            2, wantflags, P_M | P_O);
     if (QEMPTY(&bomb_list)) {
@@ -109,20 +107,15 @@ drop(void)
     /*
      * now arm and equip the bombers, transports, whatever.
      */
-    mission_flags |= P_X;      /* stealth (shhh) */
-    mission_flags |= P_H;      /* gets turned off if not all choppers */
-    mission_flags |= P_MINE;
-    mission_flags = pln_arm(&bomb_list, 2 * ap_to_target,
-                           wantflags & P_MINE ? 'm' : 'd',
-                           ip, 0, mission_flags);
+    pln_arm(&bomb_list, 2 * ap_to_target,
+           wantflags & P_MINE ? 'm' : 'd',
+           ip, 0);
     if (QEMPTY(&bomb_list)) {
        pr("No planes could be equipped for the mission.\n");
        return RET_FAIL;
     }
-    mission_flags = pln_arm(&esc_list, 2 * ap_to_target, 'd',
-                           ip, P_ESC | P_F, mission_flags);
-    ac_encounter(&bomb_list, &esc_list, ax, ay,
-                flightpath, mission_flags, 0);
+    pln_arm(&esc_list, 2 * ap_to_target, 'd', ip, P_ESC | P_F);
+    ac_encounter(&bomb_list, &esc_list, ax, ay, flightpath, 0, 0);
     if (QEMPTY(&bomb_list)) {
        pr("No planes got through fighter defenses\n");
     } else {