diff --git a/techsupport_bot/commands/duck.py b/techsupport_bot/commands/duck.py index 6c41724b..6deed351 100644 --- a/techsupport_bot/commands/duck.py +++ b/techsupport_bot/commands/duck.py @@ -361,6 +361,9 @@ def message_check( if not message.content.lower() in ["bef", "bang"]: return False + if message.author.bot: + return False + if banned_user and message.author == banned_user: embed = auxiliary.prepare_deny_embed("You cannot hunt a duck you released") asyncio.create_task(channel.send(content=banned_user.mention, embed=embed))