small fix

This commit is contained in:
Nick Walton
2019-09-17 16:23:25 -06:00
parent f68b6395e7
commit 41b882bcc1
+2 -2
View File
@@ -56,7 +56,7 @@ def play_cached():
console_print(str(story_manager.story))
possible_actions = story_manager.get_possible_actions()
while (True):
console_print("\nOptions:")
console_print("\n\nOptions:")
for i, action in enumerate(possible_actions):
console_print(str(i) + ") " + action)
@@ -70,7 +70,7 @@ def play_cached():
if __name__ == '__main__':
play_cached()
play_unconstrained()