From e059b2732e6ac3d97704c0217f356f430954e5ad Mon Sep 17 00:00:00 2001 From: Luke R Date: Fri, 24 May 2024 19:02:31 -0700 Subject: [PATCH] have /topic respond then delete --- app/cogs/server_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/cogs/server_utils.py b/app/cogs/server_utils.py index 11e0cb61..c167b8bf 100755 --- a/app/cogs/server_utils.py +++ b/app/cogs/server_utils.py @@ -265,6 +265,7 @@ class ServerUtils(commands.Cog): if ctx.author.id != core_utils.my_id: return await ctx.channel.edit(topic=new_channel_topic) + await ctx.respond("ok", delete_after=1) def setup(bot):