diff --git a/.gitignore b/.gitignore index 6c3c93a..51da1f2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ venv/ saves/* story*.json !*.gitkeep +prompts/* +!/prompts/cloveranon-prompts/* diff --git a/play.py b/play.py index 43f069b..a8e259f 100644 --- a/play.py +++ b/play.py @@ -171,6 +171,7 @@ def play(): if action == "": action = "" result = story_manager.act(action) + print('\x07', end='') colPrint(result, colors["AIText"]) elif action[0] == '"': @@ -191,6 +192,7 @@ def play(): action = "\n> " + action + "\n" result = "\n" + story_manager.act(action) + print('\x07', end='') if len(story_manager.story.results) >= 2: similarity = get_similarity( story_manager.story.results[-1], story_manager.story.results[-2]