From 29b60319473df9dc0a5aacd68b62ef6d6ddfb3da Mon Sep 17 00:00:00 2001 From: nickwalton Date: Wed, 23 Oct 2019 19:31:59 -0600 Subject: [PATCH] update --- story/story_manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/story/story_manager.py b/story/story_manager.py index 6f03918..403dad2 100644 --- a/story/story_manager.py +++ b/story/story_manager.py @@ -124,7 +124,7 @@ class ConstrainedStoryManager(StoryManager): if self.cache: return self.start_new_story_cache(story_prompt, game_state=game_state) else: - return self.start_new_story_cache(story_prompt, game_state=game_state) + return self.start_new_story(story_prompt, game_state=game_state) def start_new_story_generate(self, story_prompt, game_state=None): super().start_new_story(story_prompt, game_state=game_state)