misc: fix casing to be consistent

This commit is contained in:
2025-12-31 16:42:51 -05:00
Unverified
parent 5e02ccc47b
commit cba7dd66f3

View File

@@ -540,7 +540,7 @@ impl Server {
drop(clients_guard);
let mut tourney = match self.tournament_type.as_str() {
"round_robin" => RoundRobin::new(&ready_players),
"RoundRobin" => RoundRobin::new(&ready_players),
&_ => RoundRobin::new(&ready_players),
};
tourney.start(&self).await;