From f7acbf2d20259001ac0226606f74593a1a5d1263 Mon Sep 17 00:00:00 2001 From: Xaloc Date: Mon, 20 Mar 2023 20:08:14 +0100 Subject: [PATCH] fix channel mention --- auroraBot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auroraBot.py b/auroraBot.py index d2d98db..e1a65ae 100644 --- a/auroraBot.py +++ b/auroraBot.py @@ -16,7 +16,7 @@ bot = commands.Bot(command_prefix='!', intents=intents) async def ASC(ctx): message = 'https://www.irf.se/alis/allsky/krn/latest.jpeg' if ctx.channel.id != ID: - await ctx.send(f"Please keep this stuff in <{ID}>") + await ctx.send(f"Please keep this stuff in <#{ID}>") return else: await ctx.send(message)