feat(tournaments/round_robin): broadcast scores every round #13

Merged
joshuafhiggins merged 3 commits from feat-broadcast-scores-every-round into main 2025-12-31 21:47:50 +00:00
Showing only changes of commit a641893d50 - Show all commits

View File

@@ -122,7 +122,7 @@ impl Tournament for RoundRobin {
let _ = send(&player.connection.clone(), "TOURNAMENT:END");
player_scores.push((player.username.clone(), player.score));
}
drop(clients_guard);
drop(clients_guard);
player_scores.sort_by(|a, b| b.1.cmp(&a.1));