h/plugins/bobross.py

9 lines
176 B
Python
Raw Normal View History

2015-11-11 04:43:14 +00:00
from util import hook
from random import choice
2015-11-11 04:46:48 +00:00
from data.bobross import quotes
2015-11-11 04:43:14 +00:00
@hook.regex("^[Bb]ob [Rr]oss fact$")
@hook.command
def bobross(inp):
return choice(quotes)