Skip to content

Commit

Permalink
fix: regression introduced by #95
Browse files Browse the repository at this point in the history
  • Loading branch information
srevinsaju authored Feb 14, 2021
1 parent 7e7df72 commit 493082b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sugaroid/brain/hangman.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def __init__(self, chatbot, is_marvel=False):
:param chatbot: a chatterbot.chatbot instance
"""
if is_marvel:
self.word = "u" # random_response(HANGMAN_MARVEL_WORDS)
self.word = random_response(HANGMAN_MARVEL_WORDS)
else:
self.word = random_response(HANGMAN_WORDS)
self.dashes = self.gen_dash()
Expand Down

0 comments on commit 493082b

Please sign in to comment.