From cacc52b08f6553f12d0e0565d4bb9409fbb0cac9 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Thu, 21 Jan 2021 19:53:25 -0800 Subject: [PATCH] fixing ask to not be an embed --- app/bot.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/app/bot.py b/app/bot.py index 6ab3ed88..6f9bd411 100755 --- a/app/bot.py +++ b/app/bot.py @@ -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')