]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/dist.c
Update copyright notice
[empserver] / src / lib / commands / dist.c
index cf89b531d52f5d88366db793e180a38bde26c30a..9ef45671ebdd98d734798de021b7abfeebb12161 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *  ---
  *
  *  dist.c: Name distribution sector for a given range of sectors
- * 
+ *
  *  Known contributors to this file:
  *     Dave Pare, 1986
- *     Thomas Ruschak, 1993 (rewritten) 
+ *     Thomas Ruschak, 1993 (rewritten)
  *     Steve McClure, 1998
  */
 
@@ -53,7 +53,7 @@ dist(void)
 
     if (!snxtsct(&nstr, player->argp[1]))
        return RET_SYN;
-    while (!player->aborted && nxtsct(&nstr, &sect)) {
+    while (nxtsct(&nstr, &sect)) {
        if (!player->owner)
            continue;
        pr("%s at %s ", dchr[sect.sct_type].d_name,
@@ -70,20 +70,18 @@ dist(void)
        } else
            pr("has no dist sector. \n");
        p = getstarg(player->argp[2], "Distribution sector? ", buf);
-       if (p && (*p == 0))
+       if (!p)
+           return RET_SYN;
+       if (!*p)
            continue;
-
        if (!check_sect_ok(&sect))
            continue;
 
-       if (p && (*p != '.') && (*p != 'h') && (!sarg_xy(p, &dstx, &dsty)))
-           return RET_SYN;
-
-       if (p && ((*p == '.') || (*p == 'h'))) {
+       if (*p == '.' || *p == 'h') {
            dstx = sect.sct_x;
            dsty = sect.sct_y;
-       }
-
+       } else if (!sarg_xy(p, &dstx, &dsty))
+           return RET_SYN;
        if (!getsect(dstx, dsty, &dsect)) {
            pr("Bad sector.\n");
            return RET_FAIL;