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) {