M sdbclient/src/api/game/create.rs => sdbclient/src/api/game/create.rs +1 -1
@@ 9,7 9,7 @@
use reqwest;
use serde::{Deserialize, Serialize};
-use super::{APIErrorWrapper, types::Game};
+use super::{types::Game, APIErrorWrapper};
#[derive(Debug, Serialize, Deserialize)]
#[serde(untagged)]
M => +5 -1
@@ 72,7 72,11 @@ pub(super) fn handle(
rtdmenu.play_menu_ui_state = PlayMenuUIState::InLobbyGuest;
console.send(PrintConsoleLine::new(
format!("Joined game with id: '{}'", rtdmenu.cur_game.as_ref().unwrap().id).into(),
format!(
"Joined game with id: '{}'",
rtdmenu.cur_game.as_ref().unwrap().id
)
.into(),
));
}
ResponseJoinGame::Error(error) => {