diff options
-rw-r--r-- | bot.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bot.py b/bot.py index 3eda9ab..3f11243 100644 --- a/bot.py +++ b/bot.py @@ -29,7 +29,8 @@ async def on_command_error(ctx, error): async def on_message(message): if bot.user.mentioned_in(message): ctx = await bot.get_context(message) - await ctx.reply("<:irritater:882309845427036230>") + if not ctx.author.bot: + await ctx.reply("no u") await bot.process_commands(message) |