DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

5e9a1b42dd0a5386c8e38f18dd76a72d0c52ef2c — Jonni Liljamo 1 year, 8 months ago 3ebdb35
chore(sdbclient): format
2 files changed, 6 insertions(+), 2 deletions(-)

M sdbclient/src/api/game/create.rs
M sdbclient/src/plugins/menu/play/joingamecall.rs
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 sdbclient/src/plugins/menu/play/joingamecall.rs => sdbclient/src/plugins/menu/play/joingamecall.rs +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) => {