From aaeb8b86bde6e81e48f1b4a6c9e1b479404bedd9 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 24 Oct 2019 01:36:05 +0000 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 403dad2..6637235 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(story_prompt, game_state=game_state) + return super().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)