]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/hard.c
Update copyright notice
[empserver] / src / lib / commands / hard.c
index 13733a932e057b8b2553fd6edceaada98165da60..085f749514a22fde7c315f0bda0c7abd21d74a6d 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2007, 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
@@ -26,7 +26,7 @@
  *  ---
  *
  *  hard.c: Increases the silo protection of a given missile
- * 
+ *
  *  Known contributors to this file:
  *     Dave Pare, 1986
  */
@@ -56,7 +56,7 @@ hard(void)
     long cash;
     struct natstr *natp;
 
-    if (!snxtitem(&ni, EF_PLANE, player->argp[1]))
+    if (!snxtitem(&ni, EF_PLANE, player->argp[1], NULL))
        return RET_SYN;
     if ((p = getstarg(player->argp[2], "Increase by? ", buf)) == 0
        || *p == 0)
@@ -74,7 +74,7 @@ hard(void)
            pr("%s isn't a missile!\n", prplane(&pln));
            continue;
        }
-       if (pln.pln_ship >= 0)  /* can't harden ssbns ... */
+       if (pln.pln_ship >= 0 || pln.pln_land >= 0)
            continue;
        n = level;
        if (level + pln.pln_harden > 127)
@@ -103,7 +103,7 @@ hard(void)
        if (hcm <= n)
            n = hcm;
        pln.pln_harden += n;
-       player->dolcost += (5.0 * n);
+       player->dolcost += 5.0 * n;
        putplane(pln.pln_uid, &pln);
        sect.sct_item[I_HCM] = hcm - n;
        putsect(&sect);