diff --git a/cogs/questions.py b/cogs/questions.py index 18bccc4..2215227 100644 --- a/cogs/questions.py +++ b/cogs/questions.py @@ -287,7 +287,11 @@ async def add_question(self, ctx: commands.Context, target_message: discord.Mess pass return - log_message = await utils.safe_send(log_channel, embed=emb) + try: + log_message = await utils.safe_send(log_channel, embed=emb) + except discord.Forbidden: + await utils.safe_send(ctx, "I lack the ability to send messages in the log channel.") + return try: await self._delete_log(ctx)