|
@@ 83-85 (lines=3) @@
|
| 80 |
|
if ($championship->hasPreliminary() && !$championship->category->isTeam()) { |
| 81 |
|
$generation = new PlayOffCompetitorTreeGen($championship, null); |
| 82 |
|
} |
| 83 |
|
if (!$championship->hasPreliminary() && $championship->isDirectEliminationType() && $championship->category->isTeam()) { |
| 84 |
|
$generation = new DirectEliminationTeamTreeGen($championship, null); |
| 85 |
|
} |
| 86 |
|
if (!$championship->hasPreliminary() && $championship->isDirectEliminationType() && !$championship->category->isTeam()) { |
| 87 |
|
$generation = new DirectEliminationCompetitorTreeGen($championship, null); |
| 88 |
|
} |
|
@@ 86-88 (lines=3) @@
|
| 83 |
|
if (!$championship->hasPreliminary() && $championship->isDirectEliminationType() && $championship->category->isTeam()) { |
| 84 |
|
$generation = new DirectEliminationTeamTreeGen($championship, null); |
| 85 |
|
} |
| 86 |
|
if (!$championship->hasPreliminary() && $championship->isDirectEliminationType() && !$championship->category->isTeam()) { |
| 87 |
|
$generation = new DirectEliminationCompetitorTreeGen($championship, null); |
| 88 |
|
} |
| 89 |
|
|
| 90 |
|
$fighterToUpdate = null; |
| 91 |
|
try { |