Merge branch 'task/no-objects-of-not-a-pairing' into develop

This commit is contained in:
Jeroen De Meerleer 2019-05-01 19:55:41 +02:00
commit af4c6b31cf
2 changed files with 3 additions and 2 deletions

View File

@ -90,5 +90,4 @@ class Round
{
$this->pairings = $pairings;
}
}

View File

@ -621,7 +621,9 @@ class Sws extends SwsModel
$pairing->setRound($x);
$offset += 2;
$sws->getTournament()->addPairing($pairing);
if (!($result == Result::none && $opponent == 0)) {
$sws->getTournament()->addPairing($pairing);
}
}
}
}