]> git.pond.sub.org Git - empserver/commitdiff
(main, write_newcap_script): Don't warn when resources were added,
authorMarkus Armbruster <armbru@pond.sub.org>
Wed, 17 Mar 2004 06:53:57 +0000 (06:53 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Wed, 17 Mar 2004 06:53:57 +0000 (06:53 +0000)
that's expected nowadays.  Warn when resources were not added.  Don't
mention the ore program, as it doesn't work and we no longer
distribute it.

src/util/fairland.c

index 945ee60c321db1c55f444cc837a2b76a324b210d..1ec4c9dae88845d52cb62667707e590feaab1372 100644 (file)
@@ -257,6 +257,8 @@ main(int argc, char *argv[])
        exit(-1);
     output();
     write_newcap_script();
+    if (!ORE && !quiet)
+       printf("\t*** Resources have not been added ***\n");
     exit(0);
 }
 
@@ -1226,8 +1228,6 @@ write_newcap_script(void)
     if (quiet == 0)
        printf("\n\nA script for adding all the countries can be found in \"%s\".\n",
             outfile);
-    if (ORE && quiet == 0)
-       printf("\t***IMPORTANT: Resources have already been added***\n\tYou do NOT need to run the ore program.\n");
     return 0;
 }