third place fix
This commit is contained in:
@@ -86,9 +86,16 @@ function resolveR32Slot(
|
||||
// 2. Der Slot ist in allen noch möglichen Konstellationen stabil
|
||||
// (Enumeration aller Annex-C-Kombinationen)
|
||||
// 3. Das konkrete Team ist bekannt (Gruppe fertig)
|
||||
const fix = annexResolved
|
||||
&& thirdSlotIsSecure(winnerGroup, matches, teams)
|
||||
&& row?.qualifies === true;
|
||||
const secure = thirdSlotIsSecure(winnerGroup, matches, teams);
|
||||
console.log("[FIX-3RD]", "winnerGroup:", winnerGroup,
|
||||
"| assignedThird:", assignment?.[winnerGroup],
|
||||
"| annexResolved:", annexResolved,
|
||||
"| thirdSlotIsSecure:", secure,
|
||||
"| row.group:", row?.group,
|
||||
"| row.qualifies:", row?.qualifies,
|
||||
"| row.teamId:", row?.teamId,
|
||||
"| team:", row?.teamId ? teams.find(t => t.id === row.teamId)?.name : "null");
|
||||
const fix = annexResolved && secure && row?.qualifies === true;
|
||||
const provisional = !fix;
|
||||
const prefix = provisional ? "aktuell " : "";
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user