From 823179a315ec41b32a06ec349b344864413e3942 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Tue, 26 Jul 2005 20:03:55 +0000 Subject: [PATCH] Number of new players in summary counted properly. --- src/common/gamecode/report.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/gamecode/report.c b/src/common/gamecode/report.c index 38a185046..f5eb77d9f 100644 --- a/src/common/gamecode/report.c +++ b/src/common/gamecode/report.c @@ -3479,7 +3479,7 @@ report_summary(summary * s, summary * o, boolean full) } for (f = factions; f; f = f->next) { - if (f->age <= 1 && turn - f->lastorders == 1) { + if (f->age <= 1 && turn - f->lastorders <= 1) { newplayers++; } else if (f->no != MONSTER_FACTION) { int nmr = turn-f->lastorders;