This commit is contained in:
Nick
2019-10-29 13:53:18 -06:00
parent 152b03e5ac
commit 234ff6740f
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ prompts:
action_verbs:
classic: ["You attack", "You tell", "You use", "You go"]
anything: ["You", "You"]
anything: ["You", "You", "You"]
ctrl_verbs:
non_movement: ["take", "put", "give", "set", "keep", "help", "show", "pay", "read", "start", "stay", "call",
+1 -1
View File
@@ -110,7 +110,7 @@ class UnconstrainedStoryManager(StoryManager):
class ConstrainedStoryManager(StoryManager):
def __init__(self, generator, action_verbs_key="classic"):
def __init__(self, generator, action_verbs_key="anything"):
super().__init__(generator)
self.action_phrases = get_action_verbs(action_verbs_key)
self.cache = False