Merge branch 'bugfix/kashdanfix' into develop

This commit is contained in:
Jeroen De Meerleer 2019-06-01 16:21:03 +02:00
commit 11dd03b9e6
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6

View File

@ -259,17 +259,17 @@ abstract class Tiebreaks extends Tournament
if (array_search($pairing->getResult(), Constants::Won) !== false) { if (array_search($pairing->getResult(), Constants::Won) !== false) {
$toadd = 3; $toadd = 3;
} elseif (array_search($pairing->getResult(), Constants::Draw) !== false) { } elseif (array_search($pairing->getResult(), Constants::Draw) !== false) {
$toadd = 2;
} elseif (array_search($pairing->getResult(), Constants::Lost) !== false) {
$toadd = 1; $toadd = 1;
} elseif (array_search($pairing->getResult(), Constants::Lost) !== false) {
$toadd = 0;
} }
if (array_search(Constants::NotPlayed, $pairing->getResult()) !== false) { if (array_search($pairing->getResult(), Constants::NotPlayed) !== false) {
$toadd = 0; $toadd = -1;
} }
$tiebreak += $toadd; $tiebreak += $toadd;
} }
return $tiebreak; return $tiebreak; // - $player->getNoOfWins();
} }
/** /**