8ball answer updates and ducks.py fix.
This commit is contained in:
parent
763333eea8
commit
54c9616d4c
2 changed files with 7 additions and 2 deletions
|
@ -14,7 +14,12 @@ CHOICES = [
|
||||||
"The answer is unclear",
|
"The answer is unclear",
|
||||||
"Absolutely",
|
"Absolutely",
|
||||||
"Dubious at best",
|
"Dubious at best",
|
||||||
"I'm on a break, ask again later"
|
"I'm on a break, ask again later",
|
||||||
|
"As I see it, yes",
|
||||||
|
"It is certain",
|
||||||
|
"Naturally",
|
||||||
|
"Reply hazy, try again later",
|
||||||
|
Utils.color(4) + Utils.underline("DO NOT WASTE MY TIME")
|
||||||
]
|
]
|
||||||
|
|
||||||
class Module(object):
|
class Module(object):
|
||||||
|
|
|
@ -79,7 +79,7 @@ class Module(object):
|
||||||
if hasattr(channel, 'games') == False:
|
if hasattr(channel, 'games') == False:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if hasattr(channel["games"], 'ducks') == False:
|
if "ducks" not in channel.games.keys():
|
||||||
return False
|
return False
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in a new issue