Skip to content

Commit

Permalink
Force OMW calculations more often
Browse files Browse the repository at this point in the history
  • Loading branch information
slmnio committed Apr 9, 2022
1 parent a373476 commit 1b8d808
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion website/src/components/broadcast/Standings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ export default {
return this.blocks?.settings || null;
},
useOMW() {
return this.settings?.useOMW && this.stageMatches.every(m => [m.score_1, m.score_2].some(s => s === m.first_to));
return this.settings?.useOMW || ["OMatchWinrate", "OMapWinrate"].some(k => this.standingsSort.includes(k) || this.showColumns.includes(k));
// return this.settings?.useOMW && this.stageMatches.every(m => [m.score_1, m.score_2].some(s => s === m.first_to));
},
standingsSort() {
return this.standingsSettings?.sort;
Expand Down

0 comments on commit 1b8d808

Please sign in to comment.