adding more quotes
This commit is contained in:
parent
c3eaccaf14
commit
fd60c4295c
11
app/bot.py
Executable file → Normal file
11
app/bot.py
Executable file → Normal file
@ -55,9 +55,14 @@ async def business_card_scene_reploy(ctx):
|
|||||||
# if it has an attachment or a link
|
# if it has an attachment or a link
|
||||||
if ctx.attachments or "https://" in ctx.content:
|
if ctx.attachments or "https://" in ctx.content:
|
||||||
if random.randint(0, 9) == 0:
|
if random.randint(0, 9) == 0:
|
||||||
await ctx.reply(
|
quotes = [
|
||||||
"Jesus. This is really super. How'd a nitwit like you get so tasteful?"
|
"Jesus. This is really super. How'd a nitwit like you get so tasteful?",
|
||||||
)
|
"Whoa. Very nice. Take a look.",
|
||||||
|
"That's really nice.",
|
||||||
|
"Impressive. Very nice.",
|
||||||
|
"Look at that subtle off-white coloring. The tasteful thickness of it.",
|
||||||
|
]
|
||||||
|
await ctx.reply(randon.choice(quotes))
|
||||||
|
|
||||||
|
|
||||||
@bot.listen("on_message")
|
@bot.listen("on_message")
|
||||||
|
0
app/requirements.txt
Executable file → Normal file
0
app/requirements.txt
Executable file → Normal file
@ -6,7 +6,7 @@ replicaCount: 1
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
tag: "144"
|
tag: "145"
|
||||||
repository: ldooks/dragon-bot
|
repository: ldooks/dragon-bot
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user