new, more informative format for the dropouts file

This commit is contained in:
Enno Rehling 2005-10-02 16:25:27 +00:00
parent 5edd84e47e
commit b04b01814b
1 changed files with 5 additions and 1 deletions

View File

@ -2506,7 +2506,11 @@ remove_empty_factions(boolean writedropouts)
/* Einfach in eine Datei schreiben und später vermailen */
if (dofp) fprintf(dofp, "%s %s %d %d %d\n", f->email, LOC(default_locale, rc_name(f->race, 0)), f->age, ur?ur->x:0, ur?ur->y:0);
if (dofp) {
fprintf(dofp, "%3d %s %s %s\n",
f->age, LOC(default_locale, rc_name(f->race, 0)), f->email,
factionname(f));
}
if (updatelog) fprintf(updatelog, "dropout %s\n", itoa36(f->no));
for (f3 = factions; f3; f3 = f3->next) {