Merge branch 'develop'

This commit is contained in:
Jeroen De Meerleer 2022-12-27 12:34:45 +01:00
commit 9c7deea8ca
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
1 changed files with 11 additions and 14 deletions

View File

@ -261,26 +261,23 @@ class Swar5 implements ReaderInterface
$applycustompoints = false;
switch ($this->readData('Int', $swshandle)) {
case 4:
case 5:
case 6:
$system = TournamentSystem::CLOSED;
break;
case 7:
case 8:
$system = TournamentSystem::AMERICAN;
break;
case 3:
$applycustompoints = true;
case 0:
case 1:
case 2:
case 3:
default:
$system = TournamentSystem::SWISS;
break;
case 4:
$applycustompoints = true;
$system = TournamentSystem::SWISS;
break;
case 5:
case 6:
case 7:
$system = TournamentSystem::CLOSED;
break;
case 8:
case 9:
$system = TournamentSystem::AMERICAN;
break;
}
$this->Tournament->System = new TournamentSystem($system);