diff options
| -rw-r--r-- | src/game.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.rs b/src/game.rs index 442c937..1099af5 100644 --- a/src/game.rs +++ b/src/game.rs @@ -133,7 +133,7 @@ impl FromStr for GameStatus { if s.starts_with("y") { Ok(GameStatus::Installed) } else if s.starts_with("n/i") { - Ok(GameStatus::Installed) + Ok(GameStatus::NotInstalled) } else if s.starts_with("n") { Ok(GameStatus::NotOwned) } else if s.chars().all(char::is_whitespace) { |
