Number of new players in summary counted properly.

This commit is contained in:
Enno Rehling 2005-07-26 20:03:55 +00:00
parent ab3dd3bfeb
commit 823179a315
1 changed files with 1 additions and 1 deletions

View File

@ -3479,7 +3479,7 @@ report_summary(summary * s, summary * o, boolean full)
} }
for (f = factions; f; f = f->next) { for (f = factions; f; f = f->next) {
if (f->age <= 1 && turn - f->lastorders == 1) { if (f->age <= 1 && turn - f->lastorders <= 1) {
newplayers++; newplayers++;
} else if (f->no != MONSTER_FACTION) { } else if (f->no != MONSTER_FACTION) {
int nmr = turn-f->lastorders; int nmr = turn-f->lastorders;