forked from github/server
Number of new players in summary counted properly.
This commit is contained in:
parent
ab3dd3bfeb
commit
823179a315
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue