mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-31 15:07:42 -08:00
Tidy up 'Another mission?' message
This commit is contained in:
@@ -174,4 +174,4 @@ if __name__ == "__main__":
|
||||
again = True
|
||||
while again:
|
||||
play_game()
|
||||
again = True if input("ANOTHER MISSION (Y OR N)").upper() == "Y" else False
|
||||
again = True if input("ANOTHER MISSION? (Y OR N): ").upper() == "Y" else False
|
||||
|
||||
Reference in New Issue
Block a user