]> git.pond.sub.org Git - empserver/blobdiff - src/lib/subs/aswplnsubs.c
bomb: Fix ship list header for ASW planes
[empserver] / src / lib / subs / aswplnsubs.c
index f9827c844a409ced61cfa9d39a0c9ebe5fca0e94..4e93ebf98cef9a2f2e7290a84f90ef46f1bb2945 100644 (file)
@@ -92,25 +92,3 @@ free_shiplist(struct shiplist **head)
     }
     *head = NULL;
 }
-
-void
-print_shiplist(struct shiplist *head)
-{
-    struct shiplist *s;
-    int first;
-    struct shpstr ship;
-
-    s = head;
-    first = 1;
-
-    while (s != NULL) {
-       getship(s->uid, &ship);
-       if (first) {
-           pr(" #          player->owner           eff        type\n");
-           first = 0;
-       }
-       pr("(#%3d) %10.10s  %12.12s  %s\n", ship.shp_uid,
-          cname(ship.shp_own), effadv(ship.shp_effic), prship(&ship));
-       s = s->next;
-    }
-}