From 749a57869372552e11d15925c76f5e72d9c7a0f5 Mon Sep 17 00:00:00 2001 From: Luke R Date: Tue, 11 Jun 2024 18:09:07 -0700 Subject: [PATCH] Add defer to /flows --- app/cogs/cheeky_functions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/cogs/cheeky_functions.py b/app/cogs/cheeky_functions.py index 07cee8f7..4c15629a 100755 --- a/app/cogs/cheeky_functions.py +++ b/app/cogs/cheeky_functions.py @@ -305,8 +305,9 @@ class Cheeky(commands.Cog): async def flows(self, ctx: commands.Context): import river_stats + await ctx.defer() result = river_stats.get_stats() - await ctx.respond(embed=result) + await ctx.send_followup(embed=result) @commands.slash_command( guild_ids=None,