diff --git a/Game/__init__.pyc b/Game/__init__.pyc index ee2f97d..41ffdf7 100644 Binary files a/Game/__init__.pyc and b/Game/__init__.pyc differ diff --git a/Game/engine.pyc b/Game/engine.pyc index d743ed9..d5436d9 100644 Binary files a/Game/engine.pyc and b/Game/engine.pyc differ diff --git a/Game/exits.pyc b/Game/exits.pyc index c2f1bff..e4fe286 100644 Binary files a/Game/exits.pyc and b/Game/exits.pyc differ diff --git a/Game/inventory.pyc b/Game/inventory.pyc index c0352de..90133d4 100644 Binary files a/Game/inventory.pyc and b/Game/inventory.pyc differ diff --git a/Game/items.pyc b/Game/items.pyc index bc3ce92..0c42b90 100644 Binary files a/Game/items.pyc and b/Game/items.pyc differ diff --git a/Game/map.pyc b/Game/map.pyc index db34e00..e097c88 100644 Binary files a/Game/map.pyc and b/Game/map.pyc differ diff --git a/Game/mobiles.pyc b/Game/mobiles.pyc index f62703b..94cbf7e 100644 Binary files a/Game/mobiles.pyc and b/Game/mobiles.pyc differ diff --git a/Game/rooms.pyc b/Game/rooms.pyc index dd0eac4..ad5db20 100644 Binary files a/Game/rooms.pyc and b/Game/rooms.pyc differ diff --git a/main.py b/main.py index e9c8540..e50d2fd 100644 --- a/main.py +++ b/main.py @@ -26,6 +26,9 @@ def setup(): while main_engine.player.victory != True: action = main_engine.prompt() + while not action: + print('You must enter what you want to do') + action = main_engine.prompt() main_engine.parse(action) -main_engine.victory() \ No newline at end of file +main_engine.victory()