Rename add argument "new" to "player"

This makes the correct choice for player countries obvious.  Keep
recognizing "new" for now, but deprecate it.
This commit is contained in:
Markus Armbruster 2011-10-30 16:29:32 +01:00
parent 3fb00c79d9
commit 373f20a8b5
3 changed files with 8 additions and 4 deletions

View file

@ -1153,7 +1153,7 @@ write_newcap_script(void)
}
for (c = 0; c < nc; ++c) {
fprintf(script, "add %d %d %d n\n", c + 1, c + 1, c + 1);
fprintf(script, "add %d %d %d p\n", c + 1, c + 1, c + 1);
if (AIRPORT_MARKER)
fprintf(script, "des %d,%d -\n", capx[c], capy[c]);
fprintf(script, "newcap %d %d,%d\n", c + 1, capx[c], capy[c]);