From 7abb51a9d870002fb70a92c5b207e5f968378f2a Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 31 Jan 2024 08:59:11 -0800 Subject: [PATCH] Add a standby to /stock. i dunno man --- app/cogs/actual_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/cogs/actual_utils.py b/app/cogs/actual_utils.py index 7df56159..3755d2d5 100755 --- a/app/cogs/actual_utils.py +++ b/app/cogs/actual_utils.py @@ -190,8 +190,9 @@ class ActualUtils(commands.Cog): results = stock.parse_message(symbols, verbose) await ctx.defer() + original_message = await ctx.followup.send("Standby") for res in results: - await ctx.send_followup(embed=res) + await original_message.edit(content="", embed=res) def setup(bot):