#SaveBob
This commit is contained in:
parent
c11e785549
commit
59604ceac7
|
@ -1,6 +1,13 @@
|
|||
from util import hook
|
||||
from random import choice
|
||||
from data.bobross import quotes
|
||||
|
||||
import json
|
||||
|
||||
quotes = []
|
||||
|
||||
with open("./plugins/data/bobross.json", "r") as fin:
|
||||
print fin
|
||||
quotes = json.load(fin)
|
||||
|
||||
@hook.regex("^[Bb]ob [Rr]oss fact$")
|
||||
@hook.command
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
quotes = [
|
||||
[
|
||||
"That's a crooked tree. We'll send him to Washington.",
|
||||
"The only thing worse than yellow snow is green snow.",
|
||||
"I like to beat the brush.",
|
Loading…
Reference in New Issue