From 53d5827ed95a7583c81daf84830c4613bd4ce97c Mon Sep 17 00:00:00 2001 From: kku Date: Mon, 16 Dec 2024 19:54:53 +0100 Subject: [PATCH] Added a check to make sure the reply message is sent in an existing channel. --- cogs/custom_channels.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/cogs/custom_channels.py b/cogs/custom_channels.py index 0824d4c..4af66fc 100644 --- a/cogs/custom_channels.py +++ b/cogs/custom_channels.py @@ -196,13 +196,14 @@ class CustomChannels(commands.Cog): await holo_user_ctx.set("customchannel", None) - await ctx.respond( - embed=Embed( - title="Канал знищено", - description="Ви відмовились від каналу та видалили його.", - color=Color.default, + if ctx.channel_id != custom_channel.id: + await ctx.respond( + embed=Embed( + title="Канал знищено", + description="Ви відмовились від каналу та видалили його.", + color=Color.default, + ) ) - ) def setup(client: PycordBot):