]> git.pond.sub.org Git - empserver/blobdiff - src/lib/update/nav_ship.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / lib / update / nav_ship.c
index ee38cb96a2fa7ad3bee984fe7ed5461cf1300f73..9907e012e358f6316e455d72dae6856cfcd3f4ab 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2005, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -19,9 +19,9 @@
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
@@ -32,6 +32,8 @@
  *     Ken Stevens, 1995
  */
 
+#include <config.h>
+
 #include "misc.h"
 
 #include <ctype.h>
@@ -191,8 +193,7 @@ nav_loadship(struct shpstr *sp, natid cnum)
            didsomething[i] = 1;
            continue;
        }
-       if (sectp->sct_type != SCT_HARBR &&
-           (!opt_BIG_CITY || sectp->sct_type != SCT_CAPIT)) {
+       if (!sect_has_dock(sectp)) {
            /* we can only load in harbors */
            didsomething[i] = 1;
            continue;
@@ -292,7 +293,7 @@ nav_ship(struct shpstr *sp)
 
                /* We need to free the ship list */
                qp = ship_list.q_forw;
-               while (qp != &(ship_list)) {
+               while (qp != &ship_list) {
                    newqp = qp->q_forw;
                    emp_remque(qp);
                    free(qp);
@@ -303,14 +304,11 @@ nav_ship(struct shpstr *sp)
            stopping = 0;
 
            while (*cp && !stopping && sp->shp_own && mlp->mobil > 0.0) {
-               dir = chkdir(*cp++, DIR_STOP, DIR_LAST);
-
+               dir = diridx(*cp++);
                stopping |= shp_nav_one_sector(&ship_list, dir,
                                               sp->shp_own, 0);
            }
 
-/*                     sp->shp_mobil = (int) mobil;
- */
            /* Ship not sunk */
            if (sp->shp_own)
                nav_check_atdest(sp);
@@ -341,7 +339,7 @@ nav_ship(struct shpstr *sp)
 
     /* We need to free the ship list (just in case) */
     qp = ship_list.q_forw;
-    while (qp != &(ship_list)) {
+    while (qp != &ship_list) {
        newqp = qp->q_forw;
        emp_remque(qp);
        free(qp);