]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/rese.c
commands: Rename the command functions
[empserver] / src / lib / commands / rese.c
index bfb64d29cfaf627220bb213cdbdfb1dfa0d69697..4477506d761f59f3923c4e0c4dcfc8114ccf8bfb 100644 (file)
@@ -1,11 +1,11 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
- *                           Ken Stevens, Steve McClure
+ *  Copyright (C) 1986-2021, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *                Ken Stevens, Steve McClure, Markus Armbruster
  *
- *  This program is free software; you can redistribute it and/or modify
+ *  Empire is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
- *  the Free Software Foundation; either version 2 of the License, or
+ *  the Free Software Foundation, either version 3 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
@@ -14,8 +14,7 @@
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  *  ---
  *
 #include "commands.h"
 #include "commodity.h"
 #include "item.h"
-#include "land.h"
 #include "optlist.h"
-#include "plane.h"
-#include "ship.h"
 
 int
-rese(void)
+c_reset(void)
 {
     struct comstr comm;
     struct sctstr sect;
@@ -61,8 +57,8 @@ rese(void)
     }
     check_market();
     check_trade();
-    if ((p = getstarg(player->argp[1], "Which lot :  ", buf)) == 0
-       || *p == 0)
+    p = getstarg(player->argp[1], "Which lot :  ", buf);
+    if (!p || !*p)
        return RET_SYN;
     number_set = atoi(p);
     getcomm(number_set, &comm);
@@ -74,8 +70,8 @@ rese(void)
        pr("Some one already has a bid out on that\n");
        return RET_OK;
     }
-    if ((p = getstarg(player->argp[2], "New (lower) price: ", buf)) == 0
-       || *p == 0)
+    p = getstarg(player->argp[2], "New (lower) price: ", buf);
+    if (!p || !*p)
        return RET_SYN;
     if (!check_comm_ok(&comm))
        return RET_FAIL;
@@ -87,7 +83,7 @@ rese(void)
            return RET_OK;
        }
        if (player->god) {
-           if ((p = getstring("Really destroy that lot? ", buf)) == 0)
+           if (!(p = getstring("Really destroy that lot? ", buf)))
                return RET_FAIL;
            if (!check_comm_ok(&comm))
                return RET_FAIL;
@@ -134,7 +130,7 @@ rese(void)
     (void)time(&now);
     comm.com_markettime = now;
     if (!putcomm(number_set, &comm)) {
-       pr("Problems with the commodities file, Call the Deity\n");
+       pr("Problems with the commodities file, call the Deity\n");
        return RET_OK;
     }
     return RET_OK;