fixing ask to not be an embed

This commit is contained in:
ein 2021-01-21 19:53:25 -08:00
parent 660efbe91a
commit 97ac568dc5

View File

@ -56,11 +56,7 @@ async def on_ready():
async def ask(ctx):
import questions
await ctx.send(
embed=generate_embed(
embed_title=questions.answer_question(ctx.message.content),
author_name='Wolfram Alpha says',
author_image='https://cdn.iconscout.com/icon/free/png-256/wolfram-alpha-2-569293.png',
)
questions.answer_question(ctx.message.content),
)
@bot.command(name='invite')