From 9f9240f2076a61c8040c871cb144e7306b0f92d9 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Fri, 22 Nov 2024 10:57:05 -0800 Subject: [PATCH] Fix define by having it defer --- app/cogs/actual_utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/cogs/actual_utils.py b/app/cogs/actual_utils.py index f1a807a7..69df3b3e 100755 --- a/app/cogs/actual_utils.py +++ b/app/cogs/actual_utils.py @@ -67,8 +67,8 @@ class ActualUtils(commands.Cog): async def define(self, ctx, word): import define_word - embed = define_word.get_definition(word) - await ctx.respond(embed=embed) + await ctx.defer() + await ctx.send_followup(embed=define_word.get_definition(word)) @commands.command(name="tts") async def tts(self, ctx: commands.Context):