DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

0f793fd1094e8ad264d8fb03604779f7595d6a59 — Jonni Liljamo 1 year, 5 months ago f562571
fix(client): don't default to Err(()) in parser
1 files changed, 1 insertions(+), 1 deletions(-)

M client/src/game_status/parser.rs
M client/src/game_status/parser.rs => client/src/game_status/parser.rs +1 -1
@@ 68,7 68,7 @@ pub fn parse(actions: &Vec<Action>) -> Result<GameStatus, ()> {
        }
    }

    Err(())
    Ok(game_status)
}

fn shuffle_discard_to_deck(target: &mut PlayerStatus, seed: u64) {