]> git.pond.sub.org Git - empserver/blobdiff - src/lib/commands/vers.c
Put URIs and e-mail addresses in <angle brackets>
[empserver] / src / lib / commands / vers.c
index c791fea7a4e22db7fe3dc883e1e3e3ca081e3221..63642fe9e0fdbf2dbf4bbfa0391effed0eda9bae 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2012, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2013, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                Ken Stevens, Steve McClure, Markus Armbruster
  *
  *  Empire is free software: you can redistribute it and/or modify
@@ -33,7 +33,7 @@
  *     Ken Stevens
  *     Steve McClure
  *     Ron Koenderink, 2005-2006
- *     Markus Armbruster, 2005-2012
+ *     Markus Armbruster, 2005-2013
  */
 
 #include <config.h>
@@ -68,9 +68,9 @@ vers(void)
     pr("Each country is allowed to be logged in %d minutes a day.\n",
        m_m_p_d);
     if (*game_days != 0)
-       pr("Game days are %s\n", game_days);
+       pr("Game days are %s.\n", game_days);
     if (*game_hours != 0)
-       pr("Game hours are %s\n", game_hours);
+       pr("Game hours are %s.\n", game_hours);
     pr("It takes %.2f civilians to produce a BTU in one time unit.\n",
        (1.0 / (btu_build_rate * 100.0)));
     pr("\n");
@@ -119,7 +119,7 @@ vers(void)
 
     pr("Tech buildup is ");
     if (tech_log_base <= 1.0) {
-       pr("not limited\n");
+       pr("not limited.\n");
     }
     if (tech_log_base > 1.0) {
        pr("limited to logarithmic growth (base %.2f)", tech_log_base);
@@ -170,9 +170,9 @@ vers(void)
           trade_ally_cut * 100.0);
     }
     if (opt_MARKET) {
-       pr("The tax you pay on selling things on the trading block is %.1f%%\n",
+       pr("The tax you pay on selling things on the trading block is %.1f%%.\n",
           (1.00 - tradetax) * 100.0);
-       pr("The tax you pay on buying commodities on the market is %.1f%%\n",
+       pr("The tax you pay on buying commodities on the market is %.1f%%.\n",
           (buytax - 1.00) * 100.0);
        pr("The amount of time to bid on commodities is %d seconds.\n",
           MARK_DELAY);
@@ -183,9 +183,9 @@ vers(void)
     if (!ef_nelem(EF_NUKE_CHR))
        pr("Nukes are disabled.\n");
     else if (drnuke_const > MIN_DRNUKE_CONST) {
-       pr("In order to build a nuke, you need %1.2f times the tech level in research\n",
+       pr("In order to build a nuke, you need %1.2f times the tech level in research.\n",
           drnuke_const);
-       pr("\tExample: In order to build a 300 tech nuke, you need %d research\n\n",
+       pr("\tExample: In order to build a 300 tech nuke, you need %d research.\n\n",
           (int)(300.0 * drnuke_const));
     }
 
@@ -196,7 +196,7 @@ vers(void)
        assault_penalty);
     pr("%.0f%% of fallout leaks into each surrounding sector.\n",
        fallout_spread * 100.0 * MIN(24, etu_per_update));
-    pr("Fallout decays by %.0f%% per update\n",
+    pr("Fallout decays by %.0f%% per update.\n",
        100.0 - (decay_per_etu + 6.0) * fallout_spread * MIN(24, etu_per_update) * 100.0);
     pr("\n");
     pr("Damage to\t\t\tSpills to\n");
@@ -229,10 +229,10 @@ vers(void)
     show_opts(0);
     pr("\n\nSee \"info Options\" for a detailed list of options and descriptions.\n");
     show_custom();
-    pr("\nThe person to annoy if something goes wrong is:\n\t%s\n\t(%s).\n",
+    pr("\nThe person to annoy if something goes wrong is:\n\t%s <%s>.\n",
        privname, privlog);
     pr("\nYou can get your own copy of the source from "
-       "http://www.wolfpackempire.com/\n\n");
+       "<http://www.wolfpackempire.com/>.\n\n");
     pr("%s", legal);
     return RET_OK;
 }