Skip to content

Commit

Permalink
Disable more mention spam checks
Browse files Browse the repository at this point in the history
  • Loading branch information
FrozenChen committed Apr 2, 2024
1 parent 896ea64 commit 613b460
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ async def on_message(self, message: discord.Message):
or message.channel.id in self.bot.configuration.nofilter_list:
return
await self.scan_message(message)
self.bot.loop.create_task(self.user_ping_check(message))
# self.bot.loop.create_task(self.user_ping_check(message)) replaced by automod
self.bot.loop.create_task(self.user_spam_check(message))
self.bot.loop.create_task(self.channel_spam_check(message))

Expand Down

0 comments on commit 613b460

Please sign in to comment.