Skip to content

Commit 65d63be

Browse files
author
dmfriends2
authored
Merge branch 'python-discord:main' into main
2 parents 95bbeea + 58fb7d6 commit 65d63be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bot/exts/fun/madlibs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def author_check(message: discord.Message) -> bool:
116116
self.checks.remove(author_check)
117117

118118
story = []
119-
for value, blank in zip(random_template["value"], blanks, strict=True):
119+
for value, blank in zip(random_template["value"], blanks, strict=False):
120120
story.append(f"{value}__{blank}__")
121121

122122
# In each story template, there is always one more "value"

0 commit comments

Comments
 (0)