Drop add argument "active"

Argument "active" is obscure.  It creates a country in STAT_ACTIVE
that doesn't have a capital, and has its origin at the true origin.
If you really want such a country, create it in STAT_NEW normally,
then use edit to go to STAT_ACTIVE.
This commit is contained in:
Markus Armbruster 2011-10-30 16:11:02 +01:00
parent 62f0da239f
commit 3fb00c79d9
2 changed files with 4 additions and 10 deletions

View file

@ -86,7 +86,7 @@ add(void)
}
strcpy(pname, p);
p = getstarg(player->argp[4],
"Status? (visitor, new, active, god, delete) ", buf);
"Status? (visitor, new, god, delete) ", buf);
if (!p || !*p)
return RET_SYN;
switch (*p) {
@ -96,9 +96,6 @@ add(void)
case 'n':
stat = STAT_NEW;
break;
case 'a':
stat = STAT_ACTIVE;
break;
case 'g':
stat = STAT_GOD;
break;