From 180f1689459c28233ef7baa3f5ce6571930306a3 Mon Sep 17 00:00:00 2001 From: H3cJP <62990101+H3cJP@users.noreply.github.com> Date: Sat, 19 Nov 2022 20:23:47 +0100 Subject: [PATCH] Updating AntiScam because of the changes in the internal discord api. --- main.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index add18ff..94bf26d 100644 --- a/main.py +++ b/main.py @@ -1,12 +1,13 @@ -from discord.ext import commands from AntiScam import AntiScam whitelist = [] # Here you can add the IDs of the users allowed to bypass the AntiScam system. logs_channel = None # Here you can add the ID of the channel where the logs will be sent. -bot = discord.Bot() +intents = discord.Intents.default() +intents.message_content = True +bot = discord.Client(intents=intents) -@bot.event() +@bot.event async def on_message(message): await AntiScam(message, bot = bot, whitelist = whitelist, muted_role='Muted', verified_role='Verified', logs_channel=logs_channel) # Here you can change the names of the roles.