diff --git a/bot/meta/client.py b/bot/meta/client.py index 00b0cc23..5310171d 100644 --- a/bot/meta/client.py +++ b/bot/meta/client.py @@ -10,5 +10,7 @@ conf = Conf(CONFIG_FILE) # Initialise client owners = [int(owner) for owner in conf.bot.getlist('owners')] -client = cmdClient(prefix=conf.bot['prefix'], owners=owners, intents=Intents.all()) +intents = Intents.all() +intents.presences = False +client = cmdClient(prefix=conf.bot['prefix'], owners=owners, intents=intents) client.conf = conf