diff --git a/__pycache__/player.cpython-310.pyc b/__pycache__/player.cpython-310.pyc index 7ed0e2c..7bca804 100644 Binary files a/__pycache__/player.cpython-310.pyc and b/__pycache__/player.cpython-310.pyc differ diff --git a/__pycache__/rules.cpython-310.pyc b/__pycache__/rules.cpython-310.pyc index 5db0c63..c1b1eca 100644 Binary files a/__pycache__/rules.cpython-310.pyc and b/__pycache__/rules.cpython-310.pyc differ diff --git a/main.py b/main.py index 6869d8b..cb465ab 100644 --- a/main.py +++ b/main.py @@ -66,7 +66,8 @@ for i in range(50): expected_command = ' and '.join(command) print(f'expected command: {expected_command}') time.sleep(1) - given_command_set = set(given_command.split(' and ')) + #given_command_set = set(given_command.split(' and ')) + given_command_set = set() if given_command == '' else set(given_command.split(' and ')) if given_command_set != command: print(f'{game_player.name} made the wrong announcement') #need to put the card back in the hand