fairland: Drop option -o

With -o, fairland doesn't add resources.  This is pretty redundant;
the deity can unset resources with "edit l * i 0 g 0 f 0 c 0 u 0".
Drop the option.

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2020-08-11 13:11:15 +02:00
parent 98e5b4867a
commit 41a2a62273
2 changed files with 3 additions and 18 deletions

View file

@ -40,10 +40,6 @@ Help. Print brief usage information and exit.
.B \-i
islands will crash into each other and merge
.TP
.B \-o
do not set the resources. If you use this flag, then you will need to
set the resources yourself.
.TP
.B \-q
run quietly without printing anything to the terminal
.TP

View file

@ -109,9 +109,6 @@
#include "version.h"
#include "xy.h"
/* define ORE 1 to add resources, define ORE 0 if you want to use another
program to add the resources */
static int ORE = 1;
static int quiet = 0;
/* If you don't specify these command line arguments, then these are the
@ -245,7 +242,7 @@ main(int argc, char *argv[])
program_name = argv[0];
while ((opt = getopt(argc, argv, "e:hioqR:s:v")) != EOF) {
while ((opt = getopt(argc, argv, "e:hiqR:s:v")) != EOF) {
switch (opt) {
case 'e':
config_file = optarg;
@ -253,9 +250,6 @@ main(int argc, char *argv[])
case 'i':
DISTINCT_ISLANDS = 0;
break;
case 'o':
ORE = 0;
break;
case 'q':
quiet = 1;
break;
@ -312,7 +306,6 @@ main(int argc, char *argv[])
qprint("\nelevating land...\n");
create_elevations();
qprint("designating sectors...\n");
if (ORE)
qprint("adding resources...\n");
if (!write_newcap_script())
exit(1);
@ -331,8 +324,6 @@ main(int argc, char *argv[])
output();
qprint("\n\nA script for adding all the countries can be found in \"%s\".\n",
outfile);
if (!ORE)
qprint("\t*** Resources have not been added ***\n");
exit(0);
}
@ -382,7 +373,6 @@ usage(void)
" -e CONFIG-FILE configuration file\n"
" (default %s)\n"
" -i islands may merge\n"
" -o don't set resources\n"
" -q quiet\n"
" -R SEED seed for random number generator\n"
" -s SCRIPT name of script to create (default %s)\n"
@ -1142,7 +1132,6 @@ write_sects(void)
sct->sct_elev = total;
sct->sct_newtype = sct->sct_type;
sct->sct_dterr = own[sct->sct_x][y] + 1;
if (ORE)
add_resources(sct);
}
}