mirror of
https://github.com/JeroenED/libpairtwo.git
synced 2024-11-21 22:17:41 +01:00
Do not make a pairing object if object is not a pairing
This commit is contained in:
parent
21a494b844
commit
f8a8f86ce9
@ -90,5 +90,4 @@ class Round
|
||||
{
|
||||
$this->pairings = $pairings;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user