Tournament: Fix bad losers bracket positions

This commit is contained in:
Kalle 2023-05-24 23:50:39 +03:00
parent 593cc67c83
commit 84c50d62db
2 changed files with 1 additions and 2 deletions

View File

@ -87,7 +87,6 @@ export function resolveTournamentStageSettings(
case "DE":
return {
grandFinal: "double",
seedOrdering: ["space_between"],
};
default: {
assertUnreachable(format);

View File

@ -782,7 +782,7 @@ export class Create {
* Returns the ordering method for the first round of the upper bracket of an elimination stage.
*/
public getStandardBracketFirstRoundOrdering(): SeedOrdering {
return this.getOrdering(0, "elimination", "inner_outer");
return this.getOrdering(0, "elimination", "space_between");
}
/**