Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dignifiedquire committed Jun 18, 2024
1 parent 40a149f commit 49b2aee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework_crates/bones_framework/src/networking/online.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ async fn search_for_game(
let (mut send, mut recv) = conn.open_bi().await?;

let message = MatchmakerRequest::RequestMatch(MatchInfo {
client_count: player_count.try_into().unwrap(),
client_count: player_count,
match_data: b"jumpy_default_game".to_vec(),
});
info!(request=?message, "Sending match request");
Expand Down

0 comments on commit 49b2aee

Please sign in to comment.