Skip to content

Commit

Permalink
fix matchmaking
Browse files Browse the repository at this point in the history
  • Loading branch information
spookybear0 committed Dec 17, 2024
1 parent ee65cc9 commit 3b93e7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/js/matchmaking.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ function updateWinChances() {

for (let i = 1; i < playersTable.children.length; i++) {
try {
playersTable.children[i].children[1].innerHTML = Math.round(all_players[playersTable.children[i].children[0].innerHTML][mode_index] * 100) / 100;
playersTable.children[i].children[2].innerHTML = Math.round(all_players[playersTable.children[i].children[1].innerHTML][mode_index] * 100) / 100;
}
catch (e) {}
}
Expand Down

0 comments on commit 3b93e7b

Please sign in to comment.