Skip to content

Commit

Permalink
Fixed inaccurate playoff bracket (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
Acr515 committed Mar 23, 2024
1 parent a093e2e commit ac64874
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/data/PlayoffHelperData.js
Original file line number Diff line number Diff line change
Expand Up @@ -637,10 +637,10 @@ const PlayoffHelperFunctions = {
];
for (let match of matches[1]) { await match.runSim(); }

// Round 3: W5 vs W6, L7 vs L8
// Round 3: W6 vs L7, W5 vs L8
matches[2] = [
new PlayoffMatch( 9, matches[1][0].winningSeed, matches[1][1].winningSeed ), // Match 9 (Lower)
new PlayoffMatch( 10, matches[1][2].losingSeed, matches[1][3].losingSeed ), // Match 10 (Lower)
new PlayoffMatch( 9, matches[1][2].losingSeed, matches[1][1].winningSeed ), // Match 9 (Lower)
new PlayoffMatch( 10, matches[1][3].losingSeed, matches[1][0].winningSeed ), // Match 10 (Lower)
];
for (let match of matches[2]) { await match.runSim(); }

Expand Down

0 comments on commit ac64874

Please sign in to comment.